Skip to content

Instantly share code, notes, and snippets.

@igormunkin
Last active May 15, 2021 15:38
Show Gist options
  • Save igormunkin/483d05680c04f1ac9be63529d0001730 to your computer and use it in GitHub Desktop.
Save igormunkin/483d05680c04f1ac9be63529d0001730 to your computer and use it in GitHub Desktop.
Debug Mach-O unwind info on ARM64
diff --git a/src/Makefile b/src/Makefile
index fdf04b6e..f4d9573e 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -36,7 +36,7 @@ CC= $(DEFAULT_CC)
# to slow down the C part by not omitting it. Debugging, tracebacks and
# unwinding are not affected -- the assembler part has frame unwind
# information and GCC emits it where needed (x64) or with -g (see CCDEBUG).
-CCOPT= -O2 -fomit-frame-pointer
+#CCOPT= -O2 -fomit-frame-pointer
# Use this if you want to generate a smaller binary (but it's slower):
#CCOPT= -Os -fomit-frame-pointer
# Note: it's no longer recommended to use -O3 with GCC 4.x.
@@ -56,7 +56,7 @@ CCOPT_mips=
#
CCDEBUG=
# Uncomment the next line to generate debug information:
-#CCDEBUG= -g
+CCDEBUG= -g
#
CCWARN= -Wall
# Uncomment the next line to enable more warnings:
diff --git a/src/lj_frame.h b/src/lj_frame.h
index f67a2332..b6146454 100644
--- a/src/lj_frame.h
+++ b/src/lj_frame.h
@@ -192,12 +192,12 @@ enum { LJ_CONT_TAILCALL, LJ_CONT_FFI_CALLBACK }; /* Special continuations. */
#endif
#define CFRAME_SHIFT_MULTRES 3
#elif LJ_TARGET_ARM64
-#define CFRAME_OFS_ERRF 196
-#define CFRAME_OFS_NRES 200
-#define CFRAME_OFS_PREV 160
-#define CFRAME_OFS_L 176
-#define CFRAME_OFS_PC 168
-#define CFRAME_OFS_MULTRES 192
+#define CFRAME_OFS_ERRF 36
+#define CFRAME_OFS_NRES 40
+#define CFRAME_OFS_PREV 0
+#define CFRAME_OFS_L 16
+#define CFRAME_OFS_PC 8
+#define CFRAME_OFS_MULTRES 32
#define CFRAME_SIZE 208
#define CFRAME_SHIFT_MULTRES 3
#elif LJ_TARGET_PPC
diff --git a/src/vm_arm64.dasc b/src/vm_arm64.dasc
index 3a63d23b..9b30d56e 100644
--- a/src/vm_arm64.dasc
+++ b/src/vm_arm64.dasc
@@ -81,47 +81,49 @@
|
|.define CFRAME_SPACE, 208
|//----- 16 byte aligned, <-- sp entering interpreter
-|// Unused [sp, #204] // 32 bit values
-|.define SAVE_NRES, [sp, #200]
-|.define SAVE_ERRF, [sp, #196]
-|.define SAVE_MULTRES, [sp, #192]
-|.define TMPD, [sp, #184] // 64 bit values
-|.define SAVE_L, [sp, #176]
-|.define SAVE_PC, [sp, #168]
-|.define SAVE_CFRAME, [sp, #160]
-|.define SAVE_FPR_, 96 // 96+8*8: 64 bit FPR saves
-|.define SAVE_GPR_, 16 // 16+10*8: 64 bit GPR saves
-|.define SAVE_LR, [sp, #8]
-|.define SAVE_FP, [sp]
+|.define SAVE_LR, [sp, #200]
+|.define SAVE_FP, [sp, #192]
+|.define SAVE_GPR_, 112 // 112+10*8: 64 bit GPR saves
+|.define SAVE_FPR_, 48 // 48+8*8: 64 bit FPR saves
+|// Unused [sp, #44] // 32 bit values
+|.define SAVE_NRES, [sp, #40]
+|.define SAVE_ERRF, [sp, #36]
+|.define SAVE_MULTRES, [sp, #32]
+|.define TMPD, [sp, #24] // 64 bit values
+|.define SAVE_L, [sp, #16]
+|.define SAVE_PC, [sp, #8]
+|.define SAVE_CFRAME, [sp, #0]
|//----- 16 byte aligned, <-- sp while in interpreter.
|
-|.define TMPDofs, #184
+|.define TMPDofs, #24
|
|.macro save_, gpr1, gpr2, fpr1, fpr2
-| stp d..fpr1, d..fpr2, [sp, # SAVE_FPR_+(fpr1-8)*8]
-| stp x..gpr1, x..gpr2, [sp, # SAVE_GPR_+(gpr1-19)*8]
+| stp d..fpr2, d..fpr1, [sp, # SAVE_FPR_+(14-fpr1)*8]
+| stp x..gpr2, x..gpr1, [sp, # SAVE_GPR_+(27-gpr1)*8]
|.endmacro
|.macro rest_, gpr1, gpr2, fpr1, fpr2
-| ldp d..fpr1, d..fpr2, [sp, # SAVE_FPR_+(fpr1-8)*8]
-| ldp x..gpr1, x..gpr2, [sp, # SAVE_GPR_+(gpr1-19)*8]
+| ldp d..fpr2, d..fpr1, [sp, # SAVE_FPR_+(14-fpr1)*8]
+| ldp x..gpr2, x..gpr1, [sp, # SAVE_GPR_+(27-gpr1)*8]
|.endmacro
|
|.macro saveregs
-| stp fp, lr, [sp, #-CFRAME_SPACE]!
+| sub sp, sp, # CFRAME_SPACE
+| stp fp, lr, SAVE_FP
| add fp, sp, #0
-| stp x19, x20, [sp, # SAVE_GPR_]
+| stp x20, x19, [sp, # SAVE_GPR_+(27-19)*8]
| save_ 21, 22, 8, 9
| save_ 23, 24, 10, 11
| save_ 25, 26, 12, 13
| save_ 27, 28, 14, 15
|.endmacro
|.macro restoreregs
-| ldp x19, x20, [sp, # SAVE_GPR_]
+| ldp x20, x19, [sp, # SAVE_GPR_+(27-19)*8]
| rest_ 21, 22, 8, 9
| rest_ 23, 24, 10, 11
| rest_ 25, 26, 12, 13
| rest_ 27, 28, 14, 15
-| ldp fp, lr, [sp], # CFRAME_SPACE
+| ldp fp, lr, SAVE_FP
+| add sp, sp, # CFRAME_SPACE
|.endmacro
|
|// Type definitions. Some of these are only used for documentation.
@@ -2123,9 +2125,9 @@ static void build_subroutines(BuildCtx *ctx)
| // Caveat: needs special frame unwinding, see below.
|.if FFI
| .type CCSTATE, CCallState, x19
- | stp fp, lr, [sp, #-32]!
+ | stp x20, CCSTATE, [sp, #-32]!
+ | stp fp, lr, [sp, #16]
| add fp, sp, #0
- | str CCSTATE, [sp, #16]
| mov CCSTATE, x0
| ldr TMP0w, CCSTATE:x0->spadj
| ldrb TMP1w, CCSTATE->nsp
@@ -2154,8 +2156,8 @@ static void build_subroutines(BuildCtx *ctx)
| stp x0, x1, CCSTATE->gpr[0]
| stp d0, d1, CCSTATE->fpr[0]
| stp d2, d3, CCSTATE->fpr[2]
- | ldr CCSTATE, [sp, #16]
- | ldp fp, lr, [sp], #32
+ | ldp fp, lr, [sp, #16]
+ | ldp x20, CCSTATE, [sp], #32
| ret
|.endif
|// Note: vm_ffi_call must be the last function in this object file!
@@ -2885,7 +2887,7 @@ static void build_ins(BuildCtx *ctx, BCOp op, int defop)
case BC_GGET:
| // RA = dst, RC = str_const (~)
case BC_GSET:
- | // RA = dst, RC = str_const (~)
+ | // RA = src, RC = str_const (~)
| ldr LFUNC:CARG1, [BASE, FRAME_FUNC]
| mvn RC, RC
| and LFUNC:CARG1, CARG1, #LJ_GCVMASK
@@ -3861,7 +3863,7 @@ static int build_backend(BuildCtx *ctx)
static void emit_asm_debug(BuildCtx *ctx)
{
int fcofs = (int)((uint8_t *)ctx->glob[GLOB_vm_ffi_call] - ctx->code);
- int i, cf = CFRAME_SIZE >> 3;
+ int i;
switch (ctx->mode) {
case BUILD_elfasm:
fprintf(ctx->fp, "\t.section .debug_frame,\"\",%%progbits\n");
@@ -3886,14 +3888,14 @@ static void emit_asm_debug(BuildCtx *ctx)
"\t.quad .Lbegin\n"
"\t.quad %d\n"
"\t.byte 0xe\n\t.uleb128 %d\n" /* def_cfa_offset */
- "\t.byte 0x9d\n\t.uleb128 %d\n" /* offset fp */
- "\t.byte 0x9e\n\t.uleb128 %d\n", /* offset lr */
- fcofs, CFRAME_SIZE, cf, cf-1);
+ "\t.byte 0x9e\n\t.uleb128 1\n" /* offset lr */
+ "\t.byte 0x9d\n\t.uleb128 2\n", /* offset fp */
+ fcofs, CFRAME_SIZE);
for (i = 19; i <= 28; i++) /* offset x19-x28 */
- fprintf(ctx->fp, "\t.byte 0x%x\n\t.uleb128 %d\n", 0x80+i, cf-i+17);
+ fprintf(ctx->fp, "\t.byte 0x%x\n\t.uleb128 %d\n", 0x80+i, i+(3-19));
for (i = 8; i <= 15; i++) /* offset d8-d15 */
fprintf(ctx->fp, "\t.byte 5\n\t.uleb128 0x%x\n\t.uleb128 %d\n",
- 64+i, cf-i-4);
+ 64+i, i+(3+(28-19+1)-8));
fprintf(ctx->fp,
"\t.align 3\n"
".LEFDE0:\n\n");
@@ -3906,9 +3908,10 @@ static void emit_asm_debug(BuildCtx *ctx)
"\t.quad lj_vm_ffi_call\n"
"\t.quad %d\n"
"\t.byte 0xe\n\t.uleb128 32\n" /* def_cfa_offset */
- "\t.byte 0x9d\n\t.uleb128 4\n" /* offset fp */
- "\t.byte 0x9e\n\t.uleb128 3\n" /* offset lr */
- "\t.byte 0x93\n\t.uleb128 2\n" /* offset x19 */
+ "\t.byte 0x9e\n\t.uleb128 1\n" /* offset lr */
+ "\t.byte 0x9d\n\t.uleb128 2\n" /* offset fp */
+ "\t.byte 0x93\n\t.uleb128 3\n" /* offset x19 */
+ "\t.byte 0x94\n\t.uleb128 4\n" /* offset x20 */
"\t.align 3\n"
".LEFDE1:\n\n", (int)ctx->codesz - fcofs);
#endif
@@ -3939,14 +3942,14 @@ static void emit_asm_debug(BuildCtx *ctx)
"\t.long %d\n"
"\t.uleb128 0\n" /* augmentation length */
"\t.byte 0xe\n\t.uleb128 %d\n" /* def_cfa_offset */
- "\t.byte 0x9d\n\t.uleb128 %d\n" /* offset fp */
- "\t.byte 0x9e\n\t.uleb128 %d\n", /* offset lr */
- fcofs, CFRAME_SIZE, cf, cf-1);
+ "\t.byte 0x9e\n\t.uleb128 1\n" /* offset lr */
+ "\t.byte 0x9d\n\t.uleb128 2\n", /* offset fp */
+ fcofs, CFRAME_SIZE);
for (i = 19; i <= 28; i++) /* offset x19-x28 */
- fprintf(ctx->fp, "\t.byte 0x%x\n\t.uleb128 %d\n", 0x80+i, cf-i+17);
+ fprintf(ctx->fp, "\t.byte 0x%x\n\t.uleb128 %d\n", 0x80+i, i+(3-19));
for (i = 8; i <= 15; i++) /* offset d8-d15 */
fprintf(ctx->fp, "\t.byte 5\n\t.uleb128 0x%x\n\t.uleb128 %d\n",
- 64+i, cf-i-4);
+ 64+i, i+(3+(28-19+1)-8));
fprintf(ctx->fp,
"\t.align 3\n"
".LEFDE2:\n\n");
@@ -3975,13 +3978,110 @@ static void emit_asm_debug(BuildCtx *ctx)
"\t.long %d\n"
"\t.uleb128 0\n" /* augmentation length */
"\t.byte 0xe\n\t.uleb128 32\n" /* def_cfa_offset */
- "\t.byte 0x9d\n\t.uleb128 4\n" /* offset fp */
- "\t.byte 0x9e\n\t.uleb128 3\n" /* offset lr */
- "\t.byte 0x93\n\t.uleb128 2\n" /* offset x19 */
+ "\t.byte 0x9e\n\t.uleb128 1\n" /* offset lr */
+ "\t.byte 0x9d\n\t.uleb128 2\n" /* offset fp */
+ "\t.byte 0x93\n\t.uleb128 3\n" /* offset x19 */
+ "\t.byte 0x94\n\t.uleb128 4\n" /* offset x20 */
"\t.align 3\n"
".LEFDE3:\n\n", (int)ctx->codesz - fcofs);
#endif
break;
+#if !LJ_NO_UNWIND
+ case BUILD_machasm: {
+#if LJ_HASFFI
+ int fcsize = 0;
+#endif
+ int j;
+ fprintf(ctx->fp, "\t.section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support\n");
+ fprintf(ctx->fp,
+ "EH_frame1:\n"
+ "\t.set L$set$x,LECIEX-LSCIEX\n"
+ "\t.long L$set$x\n"
+ "LSCIEX:\n"
+ "\t.long 0\n"
+ "\t.byte 0x1\n"
+ "\t.ascii \"zPR\\0\"\n"
+ "\t.byte 0x1\n"
+ "\t.byte 128-8\n"
+ "\t.byte 30\n" /* Return address is in lr. */
+ "\t.byte 6\n" /* augmentation length */
+ "\t.byte 0x9b\n" /* indirect|pcrel|sdata4 */
+ "\t.long _lj_err_unwind_dwarf@GOTPCREL\n"
+ "\t.byte 0x1b\n" /* pcrel|sdata4 */
+ "\t.byte 0xc\n\t.byte 31\n\t.byte 0\n" /* def_cfa sp */
+ "\t.align 3\n"
+ "LECIEX:\n\n");
+ for (j = 0; j < ctx->nsym; j++) {
+ const char *name = ctx->sym[j].name;
+ int32_t size = ctx->sym[j+1].ofs - ctx->sym[j].ofs;
+ if (size == 0) continue;
+#if LJ_HASFFI
+ if (!strcmp(name, "_lj_vm_ffi_call")) { fcsize = size; continue; }
+#endif
+ fprintf(ctx->fp,
+ "%s.eh:\n"
+ "LSFDE%d:\n"
+ "\t.set L$set$%d,LEFDE%d-LASFDE%d\n"
+ "\t.long L$set$%d\n"
+ "LASFDE%d:\n"
+ "\t.long LASFDE%d-EH_frame1\n"
+ "\t.long %s-.\n"
+ "\t.long %d\n"
+ "\t.byte 0\n" /* augmentation length */
+ "\t.byte 0xe\n\t.byte %d\n\t.byte 1\n" /* def_cfa_offset */
+ "\t.byte 0x9e\n\t.byte 1\n" /* offset lr */
+ "\t.byte 0x9d\n\t.byte 2\n", /* offset fp */
+ name, j, j, j, j, j, j, j, name, size, CFRAME_SIZE);
+ for (i = 19; i <= 28; i++) /* offset x19-x28 */
+ fprintf(ctx->fp, "\t.byte 0x%x\n\t.byte %d\n", 0x80+i, i+(3-19));
+ for (i = 8; i <= 15; i++) /* offset d8-d15 */
+ fprintf(ctx->fp, "\t.byte 5\n\t.byte 0x%x\n\t.byte %d\n",
+ 64+i, i+(3+(28-19+1)-8));
+ fprintf(ctx->fp,
+ "\t.align 3\n"
+ "LEFDE%d:\n\n", j);
+ }
+#if LJ_HASFFI
+ if (fcsize) {
+ fprintf(ctx->fp,
+ "EH_frame2:\n"
+ "\t.set L$set$y,LECIEY-LSCIEY\n"
+ "\t.long L$set$y\n"
+ "LSCIEY:\n"
+ "\t.long 0\n"
+ "\t.byte 0x1\n"
+ "\t.ascii \"zR\\0\"\n"
+ "\t.byte 0x1\n"
+ "\t.byte 128-8\n"
+ "\t.byte 30\n" /* Return address is in lr. */
+ "\t.byte 1\n" /* augmentation length */
+ "\t.byte 0x1b\n" /* pcrel|sdata4 */
+ "\t.byte 0xc\n\t.byte 31\n\t.byte 0\n" /* def_cfa sp */
+ "\t.align 3\n"
+ "LECIEY:\n\n");
+ fprintf(ctx->fp,
+ "_lj_vm_ffi_call.eh:\n"
+ "LSFDEY:\n"
+ "\t.set L$set$yy,LEFDEY-LASFDEY\n"
+ "\t.long L$set$yy\n"
+ "LASFDEY:\n"
+ "\t.long LASFDEY-EH_frame2\n"
+ "\t.long _lj_vm_ffi_call-.\n"
+ "\t.long %d\n"
+ "\t.byte 0\n" /* augmentation length */
+ "\t.byte 0xe\n\t.byte 32\n" /* def_cfa_offset */
+ "\t.byte 0x9e\n\t.byte 1\n" /* offset lr */
+ "\t.byte 0x9d\n\t.byte 2\n" /* offset fp */
+ "\t.byte 0x93\n\t.byte 3\n" /* offset x19 */
+ "\t.byte 0x94\n\t.byte 4\n" /* offset x20 */
+ "\t.align 3\n"
+ "LEFDEY:\n\n", fcsize);
+ }
+#endif
+ fprintf(ctx->fp, ".subsections_via_symbols\n");
+ }
+ break;
+#endif
default:
break;
}
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
Of+/0hoAgJIcAoBS8xJA+fYKQPkIANCSeyIA0XWCX/hogh/42roAubT//xeBAoBSBwAAFHwCHIt7
AxPL4AMXqvNyAqm1EgCRYf9D0/UHAPkAAACU83JCqWICX/icAxPLQrhAklUQQPmwRkC4yQ4wixs+
SNMotUf5ew4biwABH9b/QwPR/XsMqf0DAJH0Twup6SMGbfZXCqnrKwVt+F8Jqe0zBG36Zwip7zsD
bfxvB6n3AwCq9gpA+fMDAar3CwD5tQCAUv8rALnoBwCR6S5AOf8nALn3BwD5/wMA+egqAPmpBgA0
17oA+fsDE6rzAkKpOP//0jn/v9J1gl/4/y4AORoAgJIcABPLoAZA8pwjAJHaugC5/CMAuYC7/1R9
//8X/0MD0f17DKn9AwCR9E8LqekjBm32Vwqp6ysFbfhfCantMwRt+mcIqe87A238bweptQCAUuMn
ALkOAAAU/0MD0f17DKn9AwCR9E8LqekjBm32Vwqp6ysFbfhfCantMwRt+mcIqe87A238bwepNQCA
UhwoQPniKwC59wMAquALAPn2CkD58wMBquAHAPn8AwD5/SoA+de6APnxAkKpOP//0jn/v9K1AhOL
GgCAkrUCEcscABPL2roAuWICX/hP/G+T/yUAsUK4QJKhHgBUdYIf+FUQQPmwRkC4yQ4wixs+SNMo
tUf5ew4biwABH9b/QwPR/XsMqf0DAJH0Twup6SMGbfZXCqnrKwVt+F8Jqe0zBG36Zwip7zsDbfxv
B6n3AwCqGxxA+eALAPn2CkD58RZA+eAHAPn8KkD5ewMRy/srALn/JwC5/AMA+f0qAPnXugD5YAA/
1vMDAKq1AIBS0/n/tTb//xciAl/4YAJe+OMDE6rzAxGqQrhAkh8EAPF1gF74QhBA+WgDHIsagR/4
aQAAVFSAW/gAAB/WwMAAVGOAANF8ABPL1AQAFLDCX7hhgADRaANA+fMSAPkRfljTGz5I02kOEYsp
AAnrgAAAVCgAAPki/UPTRPr/F2h6O/hpAAAUgwCAkmEOEYuDvwOLBAAAFEH///LBdgD5waIDkeJj
AJHjDwD5CAAAFJwDGIthDhGL4mMAkfwPAPkDAAAUYQ4Ri2IOHIvzEgD54AMXqvUHAPkAAACUIAEA
tAgAQPloejv4sEZAuMkOMIsbPkjTKLVH+Rx+UNMAAR/WaQoA0fMWQPkcAoBSYgJf+HWCHvh1AgnL
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
RAAAAAQAAAD4////gAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAF
TBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////hAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsL
nAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////gAAAAAAO0AGeAZ0CkwOU
BJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////
UAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQA
AAAARAAAAAQAAAD4////UAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8F
SxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////jAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQma
CpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////jAAAAAAO0AGeAZ0C
kwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4
////RAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMF
TxQAAAAARAAAAAQAAAD4////RAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4F
Sg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////QAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gI
mQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////QAAAAAAO0AGe
AZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQA
AAD4////OAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIF
ThMFTxQAAAAARAAAAAQAAAD4////OAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0F
SQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////JAAAAAAO0AGeAZ0CkwOUBJUFlgaX
B5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////JAAAAAAO
0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAA
AAQAAAD4////IAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEF
TRIFThMFTxQAAAAARAAAAAQAAAD4////MAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwF
SA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////RAAAAAAO0AGeAZ0CkwOUBJUF
lgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////SAAA
AAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAA
RAAAAAQAAAD4////bAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAF
TBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////bAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsL
nAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////dAAAAAAO0AGeAZ0CkwOU
BJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////
SAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQA
AAAARAAAAAQAAAD4////dAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8F
SxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////bAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQma
CpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////bAAAAAAO0AGeAZ0C
kwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4
////dAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMF
TxQAAAAARAAAAAQAAAD4////SAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4F
Sg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////dAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gI
mQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////bAAAAAAO0AGe
AZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQA
AAD4////bAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIF
ThMFTxQAAAAARAAAAAQAAAD4////dAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0F
SQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////SAAAAAAO0AGeAZ0CkwOUBJUFlgaX
B5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////dAAAAAAO
0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAA
AAQAAAD4////SAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEF
TRIFThMFTxQAAAAARAAAAAQAAAD4////TAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwF
SA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////LAAAAAAO0AGeAZ0CkwOUBJUF
lgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////LAAA
AAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAA
RAAAAAQAAAD4////JAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAF
TBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////IAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsL
nAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////IAAAAAAO0AGeAZ0CkwOU
BJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////
MAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQA
AAAARAAAAAQAAAD4////NAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8F
SxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////cAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQma
CpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////aAAAAAAO0AGeAZ0C
kwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4
////NAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMF
TxQAAAAARAAAAAQAAAD4////NAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4F
Sg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////PAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gI
mQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////SAAAAAAO0AGe
AZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQA
AAD4////YAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIF
ThMFTxQAAAAARAAAAAQAAAD4////VAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0F
SQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////GAAAAAAO0AGeAZ0CkwOUBJUFlgaX
B5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////GAAAAAAO
0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAA
AAQAAAD4////jAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEF
TRIFThMFTxQAAAAARAAAAAQAAAD4////lAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwF
SA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////bAAAAAAO0AGeAZ0CkwOUBJUF
lgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////SAAA
AAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAA
RAAAAAQAAAD4////sAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAF
TBEFTRIFThMFTxQAAAAARAAAAAQAAAD4/////AAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsL
nAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////kAAAAAAO0AGeAZ0CkwOU
BJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////
lAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQA
AAAARAAAAAQAAAD4////aAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8F
SxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////EAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQma
CpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////SAAAAAAO0AGeAZ0C
kwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4
////DAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMF
TxQAAAAARAAAAAQAAAD4////vAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4F
Sg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////UAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gI
mQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////pAAAAAAO0AGe
AZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQA
AAD4////vAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIF
ThMFTxQAAAAARAAAAAQAAAD4////eAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0F
SQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////FAAAAAAO0AGeAZ0CkwOUBJUFlgaX
B5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////qAAAAAAO
0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAA
AAQAAAD4////aAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEF
TRIFThMFTxQAAAAARAAAAAQAAAD4////cAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwF
SA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////kAAAAAAO0AGeAZ0CkwOUBJUF
lgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////nAAA
AAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAA
RAAAAAQAAAD4////HAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAF
TBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////jAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsL
nAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////hAAAAAAO0AGeAZ0CkwOU
BJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////
HAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQA
AAAARAAAAAQAAAD4////NAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8F
SxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////MAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQma
CpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////HAAAAAAO0AGeAZ0C
kwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4
////GAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMF
TxQAAAAARAAAAAQAAAD4////JAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4F
Sg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////IAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gI
mQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////HAAAAAAO0AGe
AZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQA
AAD4////QAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIF
ThMFTxQAAAAARAAAAAQAAAD4////MAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0F
SQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////hAAAAAAO0AGeAZ0CkwOUBJUFlgaX
B5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////BAAAAAAO
0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAA
AAQAAAD4////SAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEF
TRIFThMFTxQAAAAARAAAAAQAAAD4////TAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwF
SA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////FAAAAAAO0AGeAZ0CkwOUBJUF
lgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////GAAA
AAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAA
RAAAAAQAAAD4////SAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAF
TBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////DAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsL
nAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////dAAAAAAO0AGeAZ0CkwOU
BJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////
CAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQA
AAAARAAAAAQAAAD4////FAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8F
SxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////BAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQma
CpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////NAAAAAAO0AGeAZ0C
kwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4
////CAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMF
TxQAAAAARAAAAAQAAAD4////TAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4F
Sg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////oAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gI
mQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////PAAAAAAO0AGe
AZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQA
AAD4////fAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIF
ThMFTxQAAAAARAAAAAQAAAD4////FAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0F
SQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////IAAAAAAO0AGeAZ0CkwOUBJUFlgaX
B5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////eAAAAAAO
0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAA
AAQAAAD4////RAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEF
TRIFThMFTxQAAAAARAAAAAQAAAD4////OAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwF
SA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////EAAAAAAO0AGeAZ0CkwOUBJUF
lgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////GAAA
AAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAA
RAAAAAQAAAD4////FAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAF
TBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////XAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsL
nAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////GAAAAAAO0AGeAZ0CkwOU
BJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////
EAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQA
AAAARAAAAAQAAAD4////GAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8F
SxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////FAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQma
CpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////YAAAAAAO0AGeAZ0C
kwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4
////GAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMF
TxQAAAAARAAAAAQAAAD4////PAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4F
Sg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////GAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gI
mQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////FAAAAAAO0AGe
AZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQA
AAD4////EAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIF
ThMFTxQAAAAARAAAAAQAAAD4////EAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0F
SQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////HAAAAAAO0AGeAZ0CkwOUBJUFlgaX
B5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////HAAAAAAO
0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAA
AAQAAAD4////IAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEF
TRIFThMFTxQAAAAARAAAAAQAAAD4////DAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwF
SA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////DAAAAAAO0AGeAZ0CkwOUBJUF
lgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////DAAA
AAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAA
RAAAAAQAAAD4////JAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAF
TBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////GAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsL
nAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////GAAAAAAO0AGeAZ0CkwOU
BJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////
RAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQA
AAAARAAAAAQAAAD4////LAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8F
SxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////MAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQma
CpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////RAAAAAAO0AGeAZ0C
kwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4
////KAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMF
TxQAAAAARAAAAAQAAAD4////lAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4F
Sg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////WAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gI
mQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////MAAAAAAO0AGe
AZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQA
AAD4////GAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIF
ThMFTxQAAAAARAAAAAQAAAD4////XAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0F
SQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////UAAAAAAO0AGeAZ0CkwOUBJUFlgaX
B5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////NAAAAAAO
0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAA
AAQAAAD4////eAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEF
TRIFThMFTxQAAAAARAAAAAQAAAD4////NAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwF
SA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////OAAAAAAO0AGeAZ0CkwOUBJUF
lgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////PAAA
AAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAA
RAAAAAQAAAD4////PAEAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAF
TBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////CAEAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsL
nAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////IAAAAAAO0AGeAZ0CkwOU
BJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////
JAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQA
AAAARAAAAAQAAAD4////JAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8F
SxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////MAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQma
CpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////CAAAAAAO0AGeAZ0C
kwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4
////BAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMF
TxQAAAAARAAAAAQAAAD4////UAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4F
Sg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////HAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gI
mQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////DAAAAAAO0AGe
AZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQA
AAD4////IAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIF
ThMFTxQAAAAARAAAAAQAAAD4////IAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0F
SQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////IAAAAAAO0AGeAZ0CkwOUBJUFlgaX
B5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////IAAAAAAO
0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAA
AAQAAAD4////IAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEF
TRIFThMFTxQAAAAARAAAAAQAAAD4////IAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwF
SA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////IAAAAAAO0AGeAZ0CkwOUBJUF
lgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////IAAA
AAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAA
RAAAAAQAAAD4////IAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAF
TBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////IAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsL
nAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////IAAAAAAO0AGeAZ0CkwOU
BJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////
IAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQA
AAAARAAAAAQAAAD4////KAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8F
SxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////KAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQma
CpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////KAAAAAAO0AGeAZ0C
kwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4
////LAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMF
TxQAAAAARAAAAAQAAAD4////PAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4F
Sg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////MAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gI
mQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////jAAAAAAO0AGe
AZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQA
AAD4////jAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIF
ThMFTxQAAAAARAAAAAQAAAD4////NAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0F
SQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////MAAAAAAO0AGeAZ0CkwOUBJUFlgaX
B5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////EAAAAAAO
0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAA
AAQAAAD4////EAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEF
TRIFThMFTxQAAAAARAAAAAQAAAD4////rAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwF
SA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////TAAAAAAO0AGeAZ0CkwOUBJUF
lgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////TAAA
AAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAA
RAAAAAQAAAD4////TAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAF
TBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////OAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsL
nAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////RAAAAAAO0AGeAZ0CkwOU
BJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////
RAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQA
AAAARAAAAAQAAAD4////RAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8F
SxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////JAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQma
CpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////JAAAAAAO0AGeAZ0C
kwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4
////JAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMF
TxQAAAAARAAAAAQAAAD4////OAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4F
Sg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////OAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gI
mQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////OAAAAAAO0AGe
AZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQA
AAD4////OAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIF
ThMFTxQAAAAARAAAAAQAAAD4////OAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0F
SQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////dAAAAAAO0AGeAZ0CkwOUBJUFlgaX
B5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////NAAAAAAO
0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAA
AAQAAAD4////MAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEF
TRIFThMFTxQAAAAARAAAAAQAAAD4////LAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwF
SA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////EAAAAAAO0AGeAZ0CkwOUBJUF
lgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////UAAA
AAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAA
RAAAAAQAAAD4////EAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAF
TBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////NAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsL
nAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////CAAAAAAO0AGeAZ0CkwOU
BJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////
PAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQA
AAAARAAAAAQAAAD4////lAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8F
SxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////HAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQma
CpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////6AAAAAAO0AGeAZ0C
kwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4
////vAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMF
TxQAAAAARAAAAAQAAAD4////PAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4F
Sg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////tAAAAAAO0AGeAZ0CkwOUBJUFlgaXB5gI
mQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAARAAAAAQAAAD4////JAAAAAAO0AGe
AZ0CkwOUBJUFlgaXB5gImQmaCpsLnAwFSA0FSQ4FSg8FSxAFTBEFTRIFThMFTxQAAAAAFAAAAAAA
AAABelIAAXgeARsMHwAAAAAAHAAAAAQAAAD4////gAAAAAAOIJ4BnQKTA5QEAAAAAACsPAAA1gEA
LVQ8AADVAQAtpDsAANsBAC3QOgAA+gEALfQ5AADZAQAt0DkAANoBAC0wOQAA1wEALQg5AAD7AQAt
rDgAANgBAC0kOAAA4QEALQA4AADuAQAt2DQAANQBAC3UNAAA0wEALYw0AADUAQAtiDQAANEBAC1A
NAAA1AEALTw0AADSAQAtPDMAAO8BAC2kMQAA/gEALWQxAADPAQAtQDEAANABAC0UMQAAzgEALeww
AADKAQAtxDAAAP8BAC2cMAAAAwIALXwwAADMAQAtXDAAAAECAC08MAAAyQEALRwwAADHAQAt/C8A
AMgBAC3cLwAAAgIALbwvAADLAQAtnC8AAAACAC18LwAAzQEALVwvAAD9AQAtPC8AAPwBAC38LQAA
7gEALfAtAADdAQAt9CwAAO4BAC0MKwAA8wEALVQqAAD3AQAtDCoAAPABAC2gKQAA8gEALQQoAADp
AQAt3CcAAOQBAC2YJwAA5AEALXwnAADrAQAtTCcAAOMBAC0EJwAA6gEALeQmAADoAQAtyCYAAOcB
AC1IJgAA5gEALSQmAAD5AQAtyCUAAO0BAC1kJQAA8wEALRglAADsAQAtGCIAAO4BAC2QIQAA7gEA
LZQZAADuAQAtUBYAAPgBAC0gFQAA9gEALZARAADiAQAtaBEAAPEBAC08EQAA4gEALRQRAAD1AQAt
vBAAAN8BAC2AEAAA3gEALfQPAADgAQAtjA8AAOABAC3UDQAA5QEALZgNAAD/AQAtUAcAAPQBAC34
PgAA5AAAHPg+AACZAQAM9D4AAOMAABz0PgAA5AAADJg+AADiAAAcmD4AAEoBAAyUPgAAAwAAHJQ+
AADiAAAMUD4AAOEAABxQPgAAmgEADEw+AAADAAAcTD4AAOEAAAwIPgAA4AAAHAg+AACiAQAMBD4A
AAMAABwEPgAA4AAADMA9AADfAAAcwD0AAJgBAAy8PQAAAwAAHLw9AADfAAAMeD0AAN4AABx4PQAA
lwEADHQ9AAADAAAcdD0AAN4AAAwwPQAA3QAAHDA9AACkAQAMLD0AAAMAABwsPQAA3QAADOg8AADc
AAAc6DwAAE4BAAzkPAAAAwAAHOQ8AADcAAAMoDwAANsAABygPAAAnQEADJw8AAADAAAcnDwAANsA
AAxYPAAA2gAAHFg8AACVAQAMVDwAAAMAABxUPAAA2gAADBA8AADZAAAcEDwAAJ4BAAwMPAAAAwAA
HAw8AADZAAAMyDsAANgAABzIOwAASwEADMQ7AAADAAAcxDsAANgAAAyAOwAA1wAAHIA7AACfAQAM
fDsAAAMAABx8OwAA1wAADDg7AADWAAAcODsAAKcBAAw0OwAAAwAAHDQ7AADWAAAM8DoAANUAABzw
OgAApQEADOw6AAADAAAc7DoAANUAAAyoOgAA1AAAHKg6AACJAQAMpDoAAAMAABykOgAA1AAADGA6
AADTAAAcYDoAAJQBAAxcOgAAAwAAHFw6AADTAAAMGDoAANIAABwYOgAAiAEADBQ6AAADAAAcFDoA
ANIAAAzQOQAA0QAAHNA5AABYAQAMzDkAAAMAABzMOQAA0QAADIg5AADQAAAciDkAAFcBAAyEOQAA
AwAAHIQ5AADQAAAMQDkAAM8AABxAOQAAUAEADDw5AAADAAAcPDkAAM8AAAz4OAAAzgAAHPg4AABZ
AQAM9DgAAAMAABz0OAAAzgAADLA4AADNAAAcsDgAAFYBAAysOAAAAwAAHKw4AADNAAAMaDgAAMwA
ABxoOAAAUgEADGQ4AAADAAAcZDgAAMwAAAwgOAAAywAAHCA4AABUAQAMHDgAAAMAABwcOAAAywAA
DNg3AADKAAAc2DcAAFoBAAzUNwAAAwAAHNQ3AADKAAAMkDcAAMkAAByQNwAAVQEADIw3AAADAAAc
jDcAAMkAAAxINwAAyAAAHEg3AABTAQAMRDcAAAMAABxENwAAyAAADAA3AADHAAAcADcAAFEBAAz8
NgAAAwAAHPw2AADHAAAMuDYAAMYAABy4NgAAqwEADLQ2AAADAAActDYAAMYAAAxwNgAAxQAAHHA2
AACDAQAMbDYAAAMAABxsNgAAxQAADCg2AADEAAAcKDYAAIABAAwkNgAAAwAAHCQ2AADEAAAM4DUA
AMMAABzgNQAAgQEADNw1AAADAAAc3DUAAMMAAAyYNQAAwgAAHJg1AACCAQAMlDUAAAMAAByUNQAA
wgAADFA1AADBAAAcUDUAAI4BAAxMNQAAAwAAHEw1AADBAAAMCDUAAMAAABwINQAAigEADAQ1AAAD
AAAcBDUAAMAAAAzANAAAvwAAHMA0AAB/AQAMvDQAAAMAABy8NAAAvwAADHg0AAC+AAAceDQAAH4B
AAx0NAAAAwAAHHQ0AAC+AAAMMDQAAL0AABwwNAAAcAEADCw0AAADAAAcLDQAAL0AAAzoMwAAvAAA
HOgzAABxAQAM5DMAAAMAABzkMwAAvAAADKAzAAC7AAAcoDMAAHIBAAycMwAAAwAAHJwzAAC7AAAM
WDMAALoAABxYMwAAbAEADFQzAAADAAAcVDMAALoAAAwQMwAAuQAAHBAzAABtAQAMDDMAAAMAABwM
MwAAuQAADMgyAAC4AAAcyDIAAGsBAAzEMgAAAwAAHMQyAAC4AAAMgDIAALcAAByAMgAAZQEADHwy
AAADAAAcfDIAALcAAAw4MgAAtgAAHDgyAABzAQAMNDIAAAMAABw0MgAAtgAADPAxAAC1AAAc8DEA
AHgBAAzsMQAAAwAAHOwxAAC1AAAMqDEAALQAAByoMQAAaAEADKQxAAADAAAcpDEAALQAAAxgMQAA
swAAHGAxAAB1AQAMXDEAAAMAABxcMQAAswAADBgxAACyAAAcGDEAAGQBAAwUMQAAAwAAHBQxAACy
AAAM0DAAALEAABzQMAAAYgEADMwwAAADAAAczDAAALEAAAyIMAAAsAAAHIgwAABjAQAMhDAAAAMA
AByEMAAAsAAADEAwAACvAAAcQDAAAHcBAAw8MAAAAwAAHDwwAACvAAAM+C8AAK4AABz4LwAAZwEA
DPQvAAADAAAc9C8AAK4AAAywLwAArQAAHLAvAAB0AQAMrC8AAAMAABysLwAArQAADGgvAACsAAAc
aC8AAGkBAAxkLwAAAwAAHGQvAACsAAAMIC8AAKsAABwgLwAAbwEADBwvAAADAAAcHC8AAKsAAAzY
LgAAqgAAHNguAABuAQAM1C4AAAMAABzULgAAqgAADJAuAACpAAAckC4AAI0BAAyMLgAAAwAAHIwu
AACpAAAMSC4AAKgAABxILgAAdgEADEQuAAADAAAcRC4AAKgAAAwALgAApwAAHAAuAACLAQAM/C0A
AAMAABz8LQAApwAADLgtAACmAAAcuC0AAIwBAAy0LQAAAwAAHLQtAACmAAAMcC0AAKUAABxwLQAA
jwEADGwtAAADAAAcbC0AAKUAAAwoLQAApAAAHCgtAABhAQAMJC0AAAMAABwkLQAApAAADOAsAACj
AAAc4CwAAGYBAAzcLAAAAwAAHNwsAACjAAAMmCwAAKIAAByYLAAAagEADJQsAAADAAAclCwAAKIA
AAxQLAAAoQAAHFAsAABdAQAMTCwAAAMAABxMLAAAoQAADAgsAACgAAAcCCwAAFwBAAwELAAAAwAA
HAQsAACgAAAMwCsAAJ8AABzAKwAAWwEADLwrAAADAAAcvCsAAJ8AAAx4KwAAngAAHHgrAACHAQAM
dCsAAAMAABx0KwAAngAADDArAACdAAAcMCsAAHsBAAwsKwAAAwAAHCwrAACdAAAM6CoAAJwAABzo
KgAAXwEADOQqAAADAAAc5CoAAJwAAAygKgAAmwAAHKAqAABgAQAMnCoAAAMAABycKgAAmwAADFgq
AACaAAAcWCoAAHoBAAxUKgAAAwAAHFQqAACaAAAMECoAAJkAABwQKgAAeQEADAwqAAADAAAcDCoA
AJkAAAzIKQAAmAAAHMgpAACFAQAMxCkAAAMAABzEKQAAmAAADIApAACXAAAcgCkAAIQBAAx8KQAA
AwAAHHwpAACXAAAMOCkAAJYAABw4KQAAfAEADDQpAAADAAAcNCkAAJYAAAzwKAAAlQAAHPAoAAB9
AQAM7CgAAAMAABzsKAAAlQAADKgoAACUAAAcqCgAAF4BAAykKAAAAwAAHKQoAACUAAAMYCgAAJMA
ABxgKAAAhgEADFwoAAADAAAcXCgAAJMAAAwYKAAAkgAAHBgoAABPAQAMFCgAAAMAABwUKAAAkgAA
DNAnAACRAAAc0CcAALkBAAzMJwAAAwAAHMwnAACRAAAMiCcAAJAAAByIJwAAtQEADIQnAAADAAAc
hCcAAJAAAAxAJwAAjwAAHEAnAAC0AQAMPCcAAAMAABw8JwAAjwAADPgmAACOAAAc+CYAALsBAAz0
JgAAAwAAHPQmAACOAAAMsCYAAI0AABywJgAAswEADKwmAAADAAAcrCYAAI0AAAxoJgAAjAAAHGgm
AACyAQAMZCYAAAMAABxkJgAAjAAADCAmAACLAAAcICYAAMYBAAwcJgAAAwAAHBwmAACLAAAM2CUA
AIoAABzYJQAAsAEADNQlAAADAAAc1CUAAIoAAAyQJQAAiQAAHJAlAACxAQAMjCUAAAMAAByMJQAA
iQAADEglAACIAAAcSCUAALoBAAxEJQAAAwAAHEQlAACIAAAMACUAAIcAABwAJQAAuAEADPwkAAAD
AAAc/CQAAIcAAAy4JAAAhgAAHLgkAAC3AQAMtCQAAAMAABy0JAAAhgAADHAkAACFAAAccCQAAEcB
AAxsJAAAAwAAHGwkAACFAAAMKCQAAIQAABwoJAAASAEADCQkAAADAAAcJCQAAIQAAAzgIwAAgwAA
HOAjAABNAQAM3CMAAAMAABzcIwAAgwAADJgjAACCAAAcmCMAAEwBAAyUIwAAAwAAHJQjAACCAAAM
UCMAAIEAABxQIwAAtgEADEwjAAADAAAcTCMAAIEAAAwIIwAAgAAAHAgjAADCAQAMBCMAAAMAABwE
IwAAgAAADMAiAAB/AAAcwCIAAMUBAAy8IgAAAwAAHLwiAAB/AAAMeCIAAH4AABx4IgAAwQEADHQi
AAADAAAcdCIAAH4AAAwwIgAAfQAAHDAiAADDAQAMLCIAAAMAABwsIgAAfQAADOghAAB8AAAc6CEA
AMQBAAzkIQAAAwAAHOQhAAB8AAAMoCEAAHsAABygIQAAvQEADJwhAAADAAAcnCEAAHsAAAxYIQAA
egAAHFghAADAAQAMVCEAAAMAABxUIQAAegAADBAhAAB5AAAcECEAALwBAAwMIQAAAwAAHAwhAAB5
AAAMyCAAAHgAABzIIAAAvgEADMQgAAADAAAcxCAAAHgAAAyAIAAAdwAAHIAgAAC/AQAMfCAAAAMA
ABx8IAAAdwAADDggAAB2AAAcOCAAAEYBAAw0IAAAAwAAHDQgAAB2AAAM8B8AAHUAABzwHwAASQEA
DOwfAAADAAAc7B8AAHUAAAyoHwAAdAAAHKgfAACWAQAMpB8AAAMAABykHwAAdAAADGAfAABzAAAc
YB8AAJMBAAxcHwAAAwAAHFwfAABzAAAMGB8AAHIAABwYHwAAkgEADBQfAAADAAAcFB8AAHIAAAzQ
HgAAcQAAHNAeAACRAQAMzB4AAAMAABzMHgAAcQAADIgeAABwAAAciB4AAKMBAAyEHgAAAwAAHIQe
AABwAAAMQB4AAG8AABxAHgAApgEADDweAAADAAAcPB4AAG8AAAz4HQAAbgAAHPgdAACcAQAM9B0A
AAMAABz0HQAAbgAADLAdAABtAAAcsB0AAJsBAAysHQAAAwAAHKwdAABtAAAMaB0AAGwAABxoHQAA
rwEADGQdAAADAAAcZB0AAGwAAAwgHQAAawAAHCAdAACuAQAMHB0AAAMAABwcHQAAawAADNgcAABq
AAAc2BwAAK0BAAzUHAAAAwAAHNQcAABqAAAMkBwAAGkAAByQHAAArAEADIwcAAADAAAcjBwAAGkA
AAxIHAAAaAAAHEgcAAChAQAMRBwAAAMAABxEHAAAaAAADAAcAABnAAAcABwAAKABAAz8GwAAAwAA
HPwbAABnAAAMuBsAAGYAABy4GwAAqAEADLQbAAADAAActBsAAGYAAAxwGwAAZQAAHHAbAACpAQAM
bBsAAAMAABxsGwAAZQAADCgbAABkAAAcKBsAAKoBAAwkGwAAAwAAHCQbAABkAAAM4BoAAGMAABzg
GgAA9AAADNwaAAADAAAc3BoAAGMAAAyYGgAAYgAAHJgaAADzAAAMlBoAAAMAAByUGgAAYgAADFAa
AABhAAAcUBoAABcBAAxMGgAAAwAAHEwaAABhAAAMCBoAAGAAABwIGgAA+wAADAQaAAADAAAcBBoA
AGAAAAzAGQAAXwAAHMAZAAAWAQAMvBkAAAMAABy8GQAAXwAADHgZAABeAAAceBkAAPoAAAx0GQAA
AwAAHHQZAABeAAAMMBkAAF0AABwwGQAA9QAADCwZAAADAAAcLBkAAF0AAAzoGAAAXAAAHOgYAAAa
AQAM5BgAAAMAABzkGAAAXAAADKAYAABbAAAcoBgAABkBAAycGAAAAwAAHJwYAABbAAAMWBgAAFoA
ABxYGAAA/QAADFQYAAADAAAcVBgAAFoAAAwQGAAAWQAAHBAYAAAiAQAMDBgAAAMAABwMGAAAWQAA
DMgXAABYAAAcyBcAABgBAAzEFwAAAwAAHMQXAABYAAAMgBcAAFcAAByAFwAA/AAADHwXAAADAAAc
fBcAAFcAAAw4FwAAVgAAHDgXAAASAQAMNBcAAAMAABw0FwAAVgAADPAWAABVAAAc8BYAABUBAAzs
FgAAAwAAHOwWAABVAAAMqBYAAFQAAByoFgAA+QAADKQWAAADAAAcpBYAAFQAAAxgFgAAUwAAHGAW
AADyAAAMXBYAAAMAABxcFgAAUwAADBgWAABSAAAcGBYAABQBAAwUFgAAAwAAHBQWAABSAAAM0BUA
AFEAABzQFQAA8QAADMwVAAADAAAczBUAAFEAAAyIFQAAUAAAHIgVAAAuAQAMhBUAAAMAAByEFQAA
UAAADEAVAABPAAAcQBUAAC0BAAw8FQAAAwAAHDwVAABPAAAM+BQAAE4AABz4FAAALAEADPQUAAAD
AAAc9BQAAE4AAAywFAAATQAAHLAUAAAvAQAMrBQAAAMAABysFAAATQAADGgUAABMAAAcaBQAAAwB
AAxkFAAAAwAAHGQUAABMAAAMIBQAAEsAABwgFAAARQEADBwUAAADAAAcHBQAAEsAAAzYEwAASgAA
HNgTAAATAQAM1BMAAAMAABzUEwAASgAADJATAABJAAAckBMAABEBAAyMEwAAAwAAHIwTAABJAAAM
SBMAAEgAABxIEwAA6wAADEQTAAADAAAcRBMAAEgAAAwAEwAARwAAHAATAADqAAAM/BIAAAMAABz8
EgAARwAADLgSAABGAAAcuBIAAOgAAAy0EgAAAwAAHLQSAABGAAAMcBIAAEUAABxwEgAA6QAADGwS
AAADAAAcbBIAAEUAAAwoEgAARAAAHCgSAAA7AQAMJBIAAAMAABwkEgAARAAADOARAABDAAAc4BEA
ADoBAAzcEQAAAwAAHNwRAABDAAAMmBEAAEIAAByYEQAAOQEADJQRAAADAAAclBEAAEIAAAxQEQAA
QQAAHFARAAA8AQAMTBEAAAMAABxMEQAAQQAADAgRAABAAAAcCBEAAD0BAAwEEQAAAwAAHAQRAABA
AAAMwBAAAD8AABzAEAAANQEADLwQAAADAAAcvBAAAD8AAAx4EAAAPgAAHHgQAAA0AQAMdBAAAAMA
ABx0EAAAPgAADDAQAAA9AAAcMBAAADYBAAwsEAAAAwAAHCwQAAA9AAAM6A8AADwAABzoDwAANwEA
DOQPAAADAAAc5A8AADwAAAygDwAAOwAAHKAPAAD4AAAMnA8AAAMAABycDwAAOwAADFgPAAA6AAAc
WA8AAPcAAAxUDwAAAwAAHFQPAAA6AAAMEA8AADkAABwQDwAAMwEADAwPAAADAAAcDA8AADkAAAzI
DgAAOAAAHMgOAAA4AQAMxA4AAAMAABzEDgAAOAAADIAOAAA3AAAcgA4AAPAAAAx8DgAAAwAAHHwO
AAA3AAAMOA4AADYAABw4DgAAPgEADDQOAAADAAAcNA4AADYAAAzwDQAANQAAHPANAABCAQAM7A0A
AAMAABzsDQAANQAADKgNAAA0AAAcqA0AAEEBAAykDQAAAwAAHKQNAAA0AAAMYA0AADMAABxgDQAA
QwEADFwNAAADAAAcXA0AADMAAAwYDQAAMgAAHBgNAABEAQAMFA0AAAMAABwUDQAAMgAADNAMAAAx
AAAc0AwAAD8BAAzMDAAAAwAAHMwMAAAxAAAMiAwAADAAAByIDAAAHAEADIQMAAADAAAchAwAADAA
AAxADAAALwAAHEAMAAAeAQAMPAwAAAMAABw8DAAALwAADPgLAAAuAAAc+AsAAB0BAAz0CwAAAwAA
HPQLAAAuAAAMsAsAAC0AABywCwAAHwEADKwLAAADAAAcrAsAAC0AAAxoCwAALAAAHGgLAAAbAQAM
ZAsAAAMAABxkCwAALAAADCALAAArAAAcIAsAACABAAwcCwAAAwAAHBwLAAArAAAM2AoAACoAABzY
CgAA7AAADNQKAAADAAAc1AoAACoAAAyQCgAAKQAAHJAKAAArAQAMjAoAAAMAAByMCgAAKQAADEgK
AAAoAAAcSAoAACUBAAxECgAAAwAAHEQKAAAoAAAMAAoAACcAABwACgAA7wAADPwJAAADAAAc/AkA
ACcAAAy4CQAAJgAAHLgJAAApAQAMtAkAAAMAABy0CQAAJgAADHAJAAAlAAAccAkAADIBAAxsCQAA
AwAAHGwJAAAlAAAMKAkAACQAABwoCQAA5wAADCQJAAADAAAcJAkAACQAAAzgCAAAIwAAHOAIAAAj
AQAM3AgAAAMAABzcCAAAIwAADJgIAAAiAAAcmAgAAO0AAAyUCAAAAwAAHJQIAAAiAAAMUAgAACEA
ABxQCAAAJwEADEwIAAADAAAcTAgAACEAAAwICAAAIAAAHAgIAAAwAQAMBAgAAAMAABwECAAAIAAA
DMAHAAAfAAAcwAcAAOUAAAy8BwAAAwAAHLwHAAAfAAAMeAcAAB4AABx4BwAAJAEADHQHAAADAAAc
dAcAAB4AAAwwBwAAHQAAHDAHAADuAAAMLAcAAAMAABwsBwAAHQAADOgGAAAcAAAc6AYAACgBAAzk
BgAAAwAAHOQGAAAcAAAMoAYAABsAABygBgAAMQEADJwGAAADAAAcnAYAABsAAAxYBgAAGgAAHFgG
AADmAAAMVAYAAAMAABxUBgAAGgAADBAGAAAZAAAcEAYAACEBAAwMBgAAAwAAHAwGAAAZAAAMyAUA
ABgAABzIBQAAQAEADMQFAAADAAAcxAUAABgAAAyABQAAFwAAHIAFAAAqAQAMfAUAAAMAABx8BQAA
FwAADDgFAAAWAAAcOAUAACYBAAw0BQAAAwAAHDQFAAAWAAAM8AQAABUAABzwBAAADQEADOwEAAAD
AAAc7AQAABUAAAyoBAAAFAAAHKgEAAAQAQAMpAQAAAMAABykBAAAFAAADGAEAAATAAAcYAQAAAIB
AAxcBAAAAwAAHFwEAAATAAAMGAQAABIAABwYBAAADgEADBQEAAADAAAcFAQAABIAAAzQAwAAEQAA
HNADAAADAQAMzAMAAAMAABzMAwAAEQAADIgDAAAQAAAciAMAAA8BAAyEAwAAAwAAHIQDAAAQAAAM
QAMAAA8AABxAAwAACQEADDwDAAADAAAcPAMAAA8AAAz4AgAADgAAHPgCAAD/AAAM9AIAAAMAABz0
AgAADgAADLACAAANAAAcsAIAAAgBAAysAgAAAwAAHKwCAAANAAAMaAIAAAwAABxoAgAA/gAADGQC
AAADAAAcZAIAAAwAAAwgAgAACwAAHCACAAAKAQAMHAIAAAMAABwcAgAACwAADNgBAAAKAAAc2AEA
AAABAAzUAQAAAwAAHNQBAAAKAAAMkAEAAAkAAByQAQAACwEADIwBAAADAAAcjAEAAAkAAAxIAQAA
CAAAHEgBAAABAQAMRAEAAAMAABxEAQAACAAADAABAAAHAAAcAAEAAAUBAAz8AAAAAwAAHPwAAAAH
AAAMuAAAAAYAABy4AAAABgEADLQAAAADAAActAAAAAYAAAxwAAAABQAAHHAAAAAEAQAMbAAAAAMA
ABxsAAAABQAADCgAAAAEAAAcKAAAAAcBAAwkAAAAAwAAHCQAAAAEAAAMEgAAANwBAAx4HwAADgEA
AAAAAAAAAAAAXB8AAA4CAAA8PQAAAAAAAAsfAAAOAwAAUD0AAAAAAABiHwAADgMAAFA9AAAAAAAA
/BIAAA4DAABwPQAAAAAAAJMWAAAOAwAAuD0AAAAAAACEFgAADgMAAAA+AAAAAAAAGxMAAA4DAABI
PgAAAAAAAA0SAAAOAwAAkD4AAAAAAAB7EgAADgMAANg+AAAAAAAAoxMAAA4DAAAgPwAAAAAAALMT
AAAOAwAAaD8AAAAAAADtFAAADgMAALA/AAAAAAAA/RQAAA4DAAD4PwAAAAAAABEUAAAOAwAAQEAA
AAAAAABeFAAADgMAAIhAAAAAAAAAohYAAA4DAADQQAAAAAAAAMEWAAAOAwAAGEEAAAAAAAC+EgAA
DgMAAGBBAAAAAAAAMxYAAA4DAACoQQAAAAAAAHMWAAAOAwAA8EEAAAAAAAAbFQAADgMAADhCAAAA
AAAAHRIAAA4DAACAQgAAAAAAAN0SAAAOAwAAyEIAAAAAAABZFQAADgMAABBDAAAAAAAADRUAAA4D
AABYQwAAAAAAAK0UAAAOAwAAoEMAAAAAAAC9FAAADgMAAOhDAAAAAAAAjRQAAA4DAAAwRAAAAAAA
AH0UAAAOAwAAeEQAAAAAAACdFAAADgMAAMBEAAAAAAAAWxIAAA4DAAAIRQAAAAAAAGsSAAAOAwAA
UEUAAAAAAAA7EgAADgMAAJhFAAAAAAAAKxIAAA4DAADgRQAAAAAAAEsSAAAOAwAAKEYAAAAAAAC9
EQAADgMAAHBGAAAAAAAAzREAAA4DAAC4RgAAAAAAAJ0RAAAOAwAAAEcAAAAAAACNEQAADgMAAEhH
AAAAAAAArREAAA4DAACQRwAAAAAAAFARAAAOAwAA2EcAAAAAAABlEwAADgMAACBIAAAAAAAAwxMA
AA4DAABoSAAAAAAAAAAXAAAOAwAAsEgAAAAAAADMEgAADgMAAPhIAAAAAAAAKxUAAA4DAABASQAA
AAAAAPYVAAAOAwAAiEkAAAAAAADnFQAADgMAANBJAAAAAAAARxMAAA4DAAAYSgAAAAAAAN0RAAAO
AwAAYEoAAAAAAABzEwAADgMAAKhKAAAAAAAAzRQAAA4DAADwSgAAAAAAAAEUAAAOAwAAOEsAAAAA
AABuFAAADgMAAIBLAAAAAAAAbREAAA4DAADISwAAAAAAAF4RAAAOAwAAEEwAAAAAAADyEwAADgMA
AFhMAAAAAAAAVhMAAA4DAACgTAAAAAAAACoTAAAOAwAA6EwAAAAAAAD9EQAADgMAADBNAAAAAAAA
kxMAAA4DAAB4TQAAAAAAAPAWAAAOAwAAwE0AAAAAAADiEwAADgMAAAhOAAAAAAAA7REAAA4DAABQ
TgAAAAAAAIMTAAAOAwAAmE4AAAAAAADgFgAADgMAAOBOAAAAAAAAOhUAAA4DAAAoTwAAAAAAANIT
AAAOAwAAcE8AAAAAAABnFQAADgMAALhPAAAAAAAA2BUAAA4DAAAAUAAAAAAAAOsSAAAOAwAASFAA
AAAAAAALEwAADgMAAJBQAAAAAAAAsRYAAA4DAADYUAAAAAAAAN0UAAAOAwAAIFEAAAAAAAAkFgAA
DgMAAGhRAAAAAAAArRIAAA4DAACwUQAAAAAAAEoVAAAOAwAA+FEAAAAAAAA5EwAADgMAAEBSAAAA
AAAAbRcAAA4DAACIUgAAAAAAAF4XAAAOAwAA0FIAAAAAAAAFFgAADgMAABhTAAAAAAAAFBYAAA4D
AABgUwAAAAAAAHcVAAAOAwAAqFMAAAAAAACWFQAADgMAAPBTAAAAAAAAhhUAAA4DAAA4VAAAAAAA
AKYVAAAOAwAAgFQAAAAAAADHFQAADgMAAMhUAAAAAAAAthUAAA4DAAAQVQAAAAAAACEUAAAOAwAA
WFUAAAAAAABAFAAADgMAAKBVAAAAAAAAMBQAAA4DAADoVQAAAAAAAFAUAAAOAwAAMFYAAAAAAABB
FgAADgMAAHhWAAAAAAAAYhYAAA4DAADAVgAAAAAAAFEWAAAOAwAACFcAAAAAAACcEgAADgMAAFBX
AAAAAAAAixIAAA4DAACYVwAAAAAAANAWAAAOAwAA4FcAAAAAAAB8EQAADgMAAChYAAAAAAAA0QsA
AA4DAABwWAAAAAAAALgQAAAOAwAAuFgAAAAAAABUDAAADgMAAABZAAAAAAAABwwAAA4DAABIWQAA
AAAAAEwIAAAOAwAAkFkAAAAAAADgEAAADgMAANhZAAAAAAAA1A4AAA4DAAAgWgAAAAAAAFAPAAAO
AwAAaFoAAAAAAAC9DgAADgMAALBaAAAAAAAAyhAAAA4DAAD4WgAAAAAAAL0NAAAOAwAAQFsAAAAA
AAD2DwAADgMAAIhbAAAAAAAALg0AAA4DAADQWwAAAAAAAE4NAAAOAwAAGFwAAAAAAAASDwAADgMA
AGBcAAAAAAAAig8AAA4DAACoXAAAAAAAAB0NAAAOAwAA8FwAAAAAAAD9DgAADgMAADhdAAAAAAAA
lAkAAA4DAACAXQAAAAAAADoXAAAOAwAAyF0AAAAAAAC3CQAADgMAABBeAAAAAAAAGxEAAA4DAABY
XgAAAAAAAJoIAAAOAwAAoF4AAAAAAABrCgAADgMAAOheAAAAAAAAJhcAAA4DAAAwXwAAAAAAAKQJ
AAAOAwAAeF8AAAAAAAAIEQAADgMAAMBfAAAAAAAAhwgAAA4DAAAIYAAAAAAAAFgKAAAOAwAAUGAA
AAAAAADjCwAADgMAAJhgAAAAAAAAwQsAAA4DAADgYAAAAAAAAEERAAAOAwAAKGEAAAAAAACCCQAA
DgMAAHBhAAAAAAAAeA8AAA4DAAC4YQAAAAAAAKoNAAAOAwAAAGIAAAAAAACiEAAADgMAAEhiAAAA
AAAA0w8AAA4DAACQYgAAAAAAAC4MAAAOAwAA2GIAAAAAAACtCAAADgMAACBjAAAAAAAA1wwAAA4D
AABoYwAAAAAAAGAIAAAOAwAAsGMAAAAAAACuCwAADgMAAPhjAAAAAAAAnwwAAA4DAABAZAAAAAAA
AHANAAAOAwAAiGQAAAAAAAAKCQAADgMAANBkAAAAAAAAuAoAAA4DAAAYZQAAAAAAAOYIAAAOAwAA
YGUAAAAAAADnDwAADgMAAKhlAAAAAAAAORAAAA4DAADwZQAAAAAAACIQAAAOAwAAOGYAAAAAAABx
CQAADgMAAIBmAAAAAAAAIAsAAA4DAADIZgAAAAAAAD0PAAAOAwAAEGcAAAAAAADDCAAADgMAAFhn
AAAAAAAA2wkAAA4DAACgZwAAAAAAAPQHAAAOAwAA6GcAAAAAAADKCQAADgMAADBoAAAAAAAAPg0A
AA4DAAB4aAAAAAAAAAwNAAAOAwAAwGgAAAAAAAAHEAAADgMAAAhpAAAAAAAACQgAAA4DAABQaQAA
AAAAAIgQAAAOAwAAmGkAAAAAAACjCgAADgMAAOBpAAAAAAAAgg0AAA4DAAAoagAAAAAAACEKAAAO
AwAAcGoAAAAAAAB2CAAADgMAALhqAAAAAAAAThcAAA4DAAAAawAAAAAAABIKAAAOAwAASGsAAAAA
AADSCAAADgMAAJBrAAAAAAAARAwAAA4DAADYawAAAAAAACoPAAAOAwAAIGwAAAAAAAB8FwAADgMA
AGhsAAAAAAAAcwsAAA4DAACwbAAAAAAAAHkMAAAOAwAA+GwAAAAAAAD/CQAADgMAAEBtAAAAAAAA
xAwAAA4DAACIbQAAAAAAAGUMAAAOAwAA0G0AAAAAAADrCQAADgMAABhuAAAAAAAAsAwAAA4DAABg
bgAAAAAAAJUOAAAOAwAAqG4AAAAAAACBDgAADgMAAPBuAAAAAAAAqQ4AAA4DAAA4bwAAAAAAADkI
AAAOAwAAgG8AAAAAAAARFwAADgMAAMhvAAAAAAAAYRAAAA4DAAAQcAAAAAAAAF4LAAAOAwAAWHAA
AAAAAABJCwAADgMAAKBwAAAAAAAAZA8AAA4DAADocAAAAAAAAIwMAAAOAwAAMHEAAAAAAAAmCAAA
DgMAAHhxAAAAAAAApA8AAA4DAADAcQAAAAAAADMLAAAOAwAACHIAAAAAAAA0CgAADgMAAFByAAAA
AAAARgoAAA4DAACYcgAAAAAAAPMQAAAOAwAA4HIAAAAAAAC6DwAADgMAAChzAAAAAAAA2woAAA4D
AABwcwAAAAAAAPIKAAAOAwAAuHMAAAAAAAAuEQAADgMAAAB0AAAAAAAAdRAAAA4DAABIdAAAAAAA
AMkKAAAOAwAAkHQAAAAAAAB+CgAADgMAANh0AAAAAAAAHQkAAA4DAAAgdQAAAAAAABoMAAAOAwAA
aHUAAAAAAAD3CAAADgMAALB1AAAAAAAAXAkAAA4DAAD4dQAAAAAAAEcJAAAOAwAAQHYAAAAAAAAx
CQAADgMAAIh2AAAAAAAA6AwAAA4DAADQdgAAAAAAAJEKAAAOAwAAGHcAAAAAAAAuDgAADgMAAGB3
AAAAAAAAlg0AAA4DAACodwAAAAAAAPULAAAOAwAA8HcAAAAAAABQEAAADgMAADh4AAAAAAAA0w0A
AA4DAACAeAAAAAAAAOUNAAAOAwAAyHgAAAAAAAAdDgAADgMAABB5AAAAAAAAnAsAAA4DAABYeQAA
AAAAAPcNAAAOAwAAoHkAAAAAAAD6DAAADgMAAOh5AAAAAAAA6g4AAA4DAAAwegAAAAAAAAoOAAAO
AwAAeHoAAAAAAAAJCwAADgMAAMB6AAAAAAAAhgsAAA4DAAAIewAAAAAAAHIOAAAOAwAAUHsAAAAA
AABbDgAADgMAAJh7AAAAAAAAQg4AAA4DAADgewAAAAAAACMfAAAOAwAAKHwAAAAAAABdDQAADgMA
AEB8AAAAAAAALxsAAB8BIABgCQAAAAAAABwdAAAfASAAWAcAAAAAAACvGgAAHwEgAGgLAAAAAAAA
Dh4AAB8BIADoFgAAAAAAALIdAAAfASAA2BYAAAAAAACxGwAAHwEgADAXAAAAAAAAyxsAAB8BIAA8
FwAAAAAAABMcAAAfASAAuA0AAAAAAAAIGwAAHwEgAKwKAAAAAAAA9RwAAB8BIACkCAAAAAAAAIga
AAAfASAAtAwAAAAAAABuGgAAHwEgAKAQAAAAAAAAMh4AAB8BIAC0GwAAAAAAAL8dAAAfASAA4BwA
AAAAAADWHgAAHwEgABggAAAAAAAAehoAAB8BIABgIAAAAAAAAGIeAAAfASAABB8AAAAAAABWGwAA
HwEgAJAfAAAAAAAABxwAAB8BIACcEQAAAAAAAOQbAAAfASAAtBEAAAAAAADYHQAAHwEgAPwcAAAA
AAAAfR4AAB8BIAAgHwAAAAAAAHEbAAAfASAAkB8AAAAAAAAAHgAAHwEgACgeAAAAAAAAxBwAAB8B
IACoHgAAAAAAAFAdAAAfASAApAMAAAAAAACeHAAAHwEgALwEAAAAAAAARRwAAB8BIAAEAwAAAAAA
APAaAAAfASAAAAIAAAAAAABXHgAAHwEgAPwFAAAAAAAAyh4AAB8BIACEBQAAAAAAAKUeAAAfASAA
gAAAAAAAAADYGwAAHwEgAIABAAAAAAAAmR4AAB8BIAAAAQAAAAAAAL8bAAAfASAAAAAAAAAAAABd
HQAAHwEgADAEAAAAAAAA3BwAAB8BIAAABQAAAAAAAFIcAAAfASAAVAMAAAAAAABJGwAAHwEgAIQC
AAAAAAAAfxsAAB8BIACoGQAAAAAAAHUdAAAfASAAWAYAAAAAAACNGwAAHwEgAMQFAAAAAAAAsR4A
AB8BIABEBQAAAAAAAIseAAAfASAANAYAAAAAAAC9HgAAHwEgAPgXAAAAAAAA5R0AAB8BIAAMHgAA
AAAAAEMdAAAfASAASBgAAAAAAAA+HgAAHwEgAEQcAAAAAAAAyx0AAB8BIACIHQAAAAAAAG8eAAAf
ASAAYB8AAAAAAABjGwAAHwEgABQgAAAAAAAA8h0AAB8BIABcHgAAAAAAALccAAAfASAAwB4AAAAA
AADRHAAAHwEgAOQeAAAAAAAA/R4AAB8BIAAwDgAAAAAAABoeAAAfASAAwA4AAAAAAACCHQAAHwEg
AIAOAAAAAAAAJh4AAB8BIACgDgAAAAAAAJgbAAAfASAAXA4AAAAAAABfHAAAHwEgAAQOAAAAAAAA
ah0AAB8BIAAQBwAAAAAAAKscAAAfASAAjB4AAAAAAAAiGwAAHwEgAPQKAAAAAAAADx0AAB8BIADs
CAAAAAAAAKIaAAAfASAA/AwAAAAAAAD9GgAAHwEgAHwGAAAAAAAAFRsAAB8BIAA4CgAAAAAAAAId
AAAfASAAMAgAAAAAAACVGgAAHwEgAEAMAAAAAAAAphsAAB8BIACcBgAAAAAAAFcaAAAfASAAcA0A
AAAAAADwGwAAHwEgADQaAAAAAAAAfh8AAB8BIADcGgAAAAAAAGwfAAAfASAARBsAAAAAAACbHQAA
HwEgACAaAAAAAAAAPBsAAB8BIADMCQAAAAAAACkdAAAfASAAxAcAAAAAAAC8GgAAHwEgANQLAAAA
AAAAhRwAAB8BIABIEQAAAAAAAPAeAAAfASAA7BIAAAAAAAB4HAAAHwEgAFgTAAAAAAAAOBwAAB8B
IABYEgAAAAAAAOMaAAAfASAAzBEAAAAAAABiGgAAHwEgAOgQAAAAAAAA4x4AAB8BIABMFQAAAAAA
AI4dAAAfASAA3BUAAAAAAABrHAAAHwEgAHAWAAAAAAAAKxwAAB8BIABQFAAAAAAAANYaAAAfASAA
oBMAAAAAAADpHAAAHwEgAGQQAAAAAAAA+xsAAB8BIADwDgAAAAAAAKcdAAAfASAAzAYAAAAAAAA2
HQAAHwEgAPwPAAAAAAAAkRwAAB8BIAAwEAAAAAAAAB4cAAAfASAAlA8AAAAAAADJGgAAHwEgACQP
AAAAAAAASx4AAB8BIADsGAAAAAAAAP0BAAAfASAAkCQAAAAAAAAzGAAAHwEgAKQmAAAAAAAA7gEA
AB8BIACUJgAAAAAAALUXAAAfASAATCQAAAAAAAA1BwAAHwEgAJg8AAAAAAAAAgcAAB8BIADMOAAA
AAAAAJYEAAAfASAAaCYAAAAAAABLGgAAHwEgAIAmAAAAAAAAkRcAAB8BIABUOQAAAAAAACUBAAAf
ASAAJCgAAAAAAACBAQAAHwEgAMA2AAAAAAAAehkAAB8BIAAYNQAAAAAAADMBAAAfASAALDYAAAAA
AABTAwAAHwEgAFw1AAAAAAAA+gQAAB8BIAAINgAAAAAAAAcDAAAfASAAoDUAAAAAAACmAQAAHwEg
AFA2AAAAAAAA0QUAAB8BIAD4NgAAAAAAABcDAAAfASAAMDcAAAAAAACUAQAAHwEgAIg2AAAAAAAA
cAEAAB8BIADkNQAAAAAAAPgYAAAfASAAxCsAAAAAAAAiAAAAHwEgAAAtAAAAAAAAihkAAB8BIAAI
LgAAAAAAADkZAAAfASAAkCgAAAAAAAA3AgAAHwEgABwrAAAAAAAAEAAAAB8BIACkKgAAAAAAAJAC
AAAfASAAcC4AAAAAAABSAgAAHwEgAAQwAAAAAAAAOQUAAB8BIADkLwAAAAAAAKIFAAAfASAAJDAA
AAAAAAARHwAAHwEgAMwwAAAAAAAAcAYAAB8BIABMLgAAAAAAAGMCAAAfASAApC8AAAAAAACaBwAA
HwEgAGQwAAAAAAAANQQAAB8BIABkLwAAAAAAACYDAAAfASAAKC4AAAAAAABpGQAAHwEgAPQwAAAA
AAAAEQQAAB8BIABIMQAAAAAAACMEAAAfASAAHDEAAAAAAADcFwAAHwEgACQvAAAAAAAAih8AAB8B
IABELwAAAAAAADwAAAAfASAAQDIAAAAAAABaBQAAHwEgALQxAAAAAAAAIhgAAB8BIACEMQAAAAAA
AEwAAAAfASAApDAAAAAAAABKBQAAHwEgAIQvAAAAAAAAqwcAAB8BIABEMAAAAAAAABQBAAAfASAA
/C4AAAAAAACzBQAAHwEgAMQvAAAAAAAAvAcAAB8BIACEMAAAAAAAAPsAAAAfASAAICoAAAAAAABF
AgAAHwEgAHAqAAAAAAAAGAYAAB8BIABQKwAAAAAAAMYBAAAfASAAfCkAAAAAAAAlGQAAHwEgACQp
AAAAAAAAfRgAAB8BIADMMgAAAAAAAP4DAAAfASAAADMAAAAAAAB3AwAAHwEgAEg0AAAAAAAApxgA
AB8BIAD8MwAAAAAAAAkaAAAfASAAUDMAAAAAAAC0AwAAHwEgAJQ0AAAAAAAA3AMAAB8BIACsKQAA
AAAAAOwXAAAfASAAxCkAAAAAAADeGAAAHwEgAGgoAAAAAAAA7wUAAB8BIACIKwAAAAAAACQHAAAf
ASAAaDcAAAAAAADPBAAAHwEgABA4AAAAAAAAoAIAAB8BIAAwMwAAAAAAAIQCAAAfASAArC4AAAAA
AABPHwAAHwEgAKguAAAAAAAAHgUAAB8BIAAYLwAAAAAAAK8CAAAfASAAQDMAAAAAAAC6AAAAHwEg
AKAuAAAAAAAAagUAAB8BIAAAAAAAAAAAACUGAAAfASAAJCMAAAAAAADHFwAAHwEgAKAjAAAAAAAA
QhgAAB8BIAC0IwAAAAAAAIEGAAAfASAA3DcAAAAAAADiBgAAHwEgABA5AAAAAAAA/QUAAB8BIADU
IwAAAAAAAMgDAAAfASAABDoAAAAAAABRBAAAHwEgAOw6AAAAAAAAMQYAAB8BIAC8PAAAAAAAAEsH
AAAfASAA5DsAAAAAAADmGQAAHwEgAPQhAAAAAAAAsQYAAB8BIAD8IQAAAAAAAOAFAAAfASAAGDkA
AAAAAAB3BAAAHwEgANw4AAAAAAAA0wYAAB8BIAB8OAAAAAAAAOoEAAAfASAAICEAAAAAAABcAAAA
HwEgACwhAAAAAAAAXwcAAB8BIACoOwAAAAAAAAsGAAAfASAA6CIAAAAAAADyBgAAHwEgAOg5AAAA
AAAAWxkAAB8BIABAOAAAAAAAAOoYAAAfASAASCIAAAAAAADEBgAAHwEgAGw4AAAAAAAAKwUAAB8B
IADYIAAAAAAAAMYZAAAfASAAwCAAAAAAAACjBAAAHwEgAKwgAAAAAAAAOxoAAB8BIADgNAAAAAAA
APkZAAAfASAAoCEAAAAAAADhBwAAHwEgAKghAAAAAAAAERgAAB8BIAC8IQAAAAAAAM0HAAAfASAA
wCEAAAAAAADoAAAAHwEgABgnAAAAAAAACwUAAB8BIAAMJwAAAAAAAIUAAAAfASAAMCcAAAAAAACG
BAAAHwEgAFQnAAAAAAAAUwYAAB8BIACEJwAAAAAAAFEBAAAfASAAyCcAAAAAAACyBAAAHwEgACwm
AAAAAAAAkgYAAB8BIAC0JgAAAAAAAKEZAAAfASAA0CYAAAAAAAA4AwAAHwEgAPQnAAAAAAAAvRgA
AB8BIADsJgAAAAAAAIcFAAAfASAAbCcAAAAAAAArGgAAHwEgAPAkAAAAAAAA3AIAAB8BIABgJQAA
AAAAACcCAAAfASAA2CQAAAAAAAA+HwAAHwEgAMgkAAAAAAAA2AAAAB8BIAAEJQAAAAAAABsaAAAf
ASAAoCUAAAAAAADMAgAAHwEgABQmAAAAAAAAFwIAAB8BIACIJQAAAAAAAC0fAAAfASAAeCUAAAAA
AADIAAAAHwEgALQlAAAAAAAAwwUAAB8BIAAkJwAAAAAAAF0CAAABAAAAAAAAAAAAAABEBQAAAQAA
AAAAAAAAAAAArQUAAAEAAAAAAAAAAAAAABwfAAABAAAAAAAAAAAAAABuAgAAAQAAAAAAAAAAAAAA
pQcAAAEAAAAAAAAAAAAAAEAEAAABAAAAAAAAAAAAAAB0GQAAAQAAAAAAAAAAAAAAHAQAAAEAAAAA
AAAAAAAAAC4EAAABAAAAAAAAAAAAAABiAwAAAQAAAAAAAAAAAAAAkBgAAAEAAAAAAAAAAAAAAJ8D
AAABAAAAAAAAAAAAAAC+AgAAAQAAAAAAAAAAAAAAiwMAAAEAAAAAAAAAAAAAAGkYAAABAAAAAAAA
AAAAAABBBgAAAQAAAAAAAAAAAAAAcwIAAAEAAAAAAAAAAAAAABAZAAABAAAAAAAAAAAAAAChFwAA
AQAAAAAAAAAAAAAATRkAAAEAAAAAAAAAAAAAAPwXAAABAAAAAAAAAAAAAADsAgAAAQAAAAAAAAAA
AAAAqQAAAAEAAAAAAAAAAAAAANUZAAABAAAAAAAAAAAAAACYAAAAAQAAAAAAAAAAAAAA3gQAAAEA
AAAAAAAAAAAAAGQEAAABAAAAAAAAAAAAAACLBwAAAQAAAAAAAAAAAAAAYgYAAAEAAAAAAAAAAAAA
AAoCAAABAAAAAAAAAAAAAADBBAAAAQAAAAAAAAAAAAAAogYAAAEAAAAAAAAAAAAAALQZAAABAAAA
AAAAAAAAAABGAwAAAQAAAAAAAAAAAAAAzhgAAAEAAAAAAAAAAAAAAJUFAAABAAAAAAAAAAAAAADU
AQAAAQAAAAAAAAAAAAAAuAEAAAEAAAAAAAAAAAAAABAHAAABAAAAAAAAAAAAAABtAAAAAQAAAAAA
AAAAAAAA7AMAAAEAAAAAAAAAAAAAAEUEAAABAAAAAAAAAAAAAADiAQAAAQAAAAAAAAAAAAAAewcA
AAEAAAAAAAAAAAAAAHsFAAABAAAAAAAAAAAAAAB5AAAAAQAAAAAAAAAAAAAAAQAAAAEAAAAAAAAA
AAAAAAcBAAABAAAAAAAAAAAAAABZGAAAAQAAAAAAAAAAAAAAawcAAAEAAAAAAAAAAAAAAGEBAAAB
AAAAAAAAAAAAAABDAQAAAQAAAAAAAAAAAAAA5xcAAAEAAAAAAAAAAAAAAJUfAAABAAAAAAAAAAAA
AAAtGAAAAQAAAAAAAAAAAAAAVwAAAAEAAAAAAAAAAAAAAFUFAAABAAAAAAAAAAAAAAC2BwAAAQAA
AAAAAAAAAAAAvgUAAAEAAAAAAAAAAAAAAMcHAAABAAAAAAAAAAAAAAAAX2xqX3RhYl9uZXdrZXkA
X2xqX2ZmX2lwYWlyc19hdXgAX2xqX2ZmX2Nvcm91dGluZV93cmFwX2F1eABfbGpfZmZfbWF0aF9t
YXgAX2xqX2ZmX21hdGhfcG93AF9sal92bV9sZWF2ZV91bncAX2xqX3N0cl9uZXcAX2xqX3RhYl9u
ZXcAX2xqX3ZtZXRhX2FyaXRoX3Z2AF9sal9nY19iYXJyaWVydXYAX2xqX2Z1bmNfY2xvc2V1dgBf
bGpfZmZmX3Jlc3R2AF9sal92bWV0YV90c2V0dgBfbGpfdm1ldGFfdGdldHYAX2xqX3ZtZXRhX2Fy
aXRoX252AF9sal9mZl9uZXh0AF9sal90YWJfbmV4dABfbGpfZmZfbWF0aF9zcXJ0AF9sal9mZl9h
c3NlcnQAX2xqX2ZmX2JpdF9ibm90AF9sal90cmFjZV9ob3QAX2xqX3ZtZXRhX2NhbGx0AF9sal90
cmFjZV9leGl0AF9sal9mZl9iaXRfdG9iaXQAX2xqX2ZmX2JpdF9hcnNoaWZ0AF9sal9mZl9iaXRf
cnNoaWZ0AF9sal9mZl9iaXRfbHNoaWZ0AF9sal9tZXRhX3RzZXQAX2xqX2ZmX3Jhd2dldABfbGpf
bWV0YV90Z2V0AF9sal90YWJfZ2V0AF9sal9jb250X2NvbmR0AF9sal9jb250X2NhdABfbGpfbWV0
YV9jYXQAX2xqX3ZtZXRhX3RzZXRzAF9sal92bWV0YV90Z2V0cwBfbGpfZmZfaXBhaXJzAF9sal9m
Zl9wYWlycwBfbGpfZmZfbWF0aF9hY29zAF9sal9mZl9tYXRoX2NvcwBfbGpfZGlzcGF0Y2hfaW5z
AF9sal9mZmZfcmVzAF9sal9mZl9tYXRoX2FicwBfbGpfZmZmX25ld3N0cgBfbGpfZmZmX3Jlc3N0
cgBfbGpfYnVmX3Rvc3RyAF9sal92bWV0YV90c2V0cgBfbGpfdm1ldGFfdGdldHIAX2xqX2ZmaF9j
b3JvdXRpbmVfd3JhcF9lcnIAX2xqX2ZmX2JpdF9ieG9yAF9sal9mZl9iaXRfcm9yAF9sal9mZl9t
YXRoX2Zsb29yAF9sal92bWV0YV9mb3IAX2xqX21ldGFfZm9yAF9sal9mZl9iaXRfYm9yAF9sal9i
dWZfcHV0c3RyX2xvd2VyAF9sal9mZl9zdHJpbmdfbG93ZXIAX2xqX2NjYWxsYmFja19lbnRlcgBf
bGpfYnVmX3B1dHN0cl91cHBlcgBfbGpfZmZfc3RyaW5nX3VwcGVyAF9sal92bV9leGl0X2hhbmRs
ZXIAX2xqX2ZmX3RvbnVtYmVyAF9sal9zdHJmbXRfbnVtYmVyAF9sal9mZl9zdHJpbmdfY2hhcgBf
bGpfZmZfbWF0aF9mcmV4cABfbGpfZmZfbWF0aF9sZGV4cABfbGpfZmZfbWF0aF9leHAAX2xqX3Rh
Yl9kdXAAX2xqX3ZtX2V4aXRfaW50ZXJwAF9sal9nY19zdGVwX2ZpeHRvcABfbGpfdm1faG90bG9v
cABfbGpfdm1ldGFfYmlub3AAX2xqX2NvbnRfbm9wAF9sal92bV9yZXR1cm5wAF9sal92bWV0YV9j
b21wAF9sal9tZXRhX2NvbXAAX2xqX2ZmZl9nY3N0ZXAAX2xqX2djX3N0ZXAAX2xqX3ZtX2xlYXZl
X2NwAF9sal9mZl9iaXRfYnN3YXAAX2xqX3ZtZXRhX2FyaXRoX3ZuAF9sal9mZmZfcmVzbgBfbGpf
dm1fcmV0dXJuAF9sal9mZl9tYXRoX2FzaW4AX2xqX2ZmX21hdGhfc2luAF9sal9mZl9tYXRoX21p
bgBfbGpfdm1fYXNtX2JlZ2luAF9sal90YWJfbGVuAF9sal92bWV0YV9sZW4AX2xqX21ldGFfbGVu
AF9sal9mZl9tYXRoX2F0YW4AX2xqX2ZmX21hdGhfdGFuAF9sal92bWV0YV91bm0AX2xqX2ZmX2Jp
dF9yb2wAX2xqX3ZtX2hvdGNhbGwAX2xqX2ZmX3hwY2FsbABfbGpfdm1fY3BjYWxsAF9sal92bV9w
Y2FsbABfbGpfZmZfcGNhbGwAX2xqX3ZtX2NhbGwAX2xqX3ZtX2ZmaV9jYWxsAF9sal9kaXNwYXRj
aF9jYWxsAF9sal92bWV0YV9jYWxsAF9sal9tZXRhX2NhbGwAX2xqX2ZmX21hdGhfY2VpbABfbGpf
dm1fY2FsbF90YWlsAF9sal92bWV0YV9lcXVhbABfbGpfbWV0YV9lcXVhbABfbGpfdm1fZ3Jvd3N0
YWNrX2wAX2xqX3ZtX3JldGhvb2sAX2xqX3ZtX2luc2hvb2sAX2xqX3ZtX2NhbGxob29rAF9sal92
bV9wcm9maG9vawBfbGpfY29udF9ob29rAF9sal9zdGF0ZV9ncm93c3RhY2sAX2xqX2ZmZl9mYWxs
YmFjawBfbGpfY29udF9mZmlfY2FsbGJhY2sAX2xqX3ZtX2ZmaV9jYWxsYmFjawBfbGpfdm1fbW9k
aQBfbGpfdGFiX3NldGludGgAX2xqX3RhYl9nZXRpbnRoAF9sal9tZXRhX2FyaXRoAF9sal9mZl9t
YXRoX2Nvc2gAX2xqX2ZmX21hdGhfc2luaABfbGpfZmZfbWF0aF90YW5oAF9sal92bV91bndpbmRf
ZmZfZWgAX2xqX3ZtX3Vud2luZF9jX2VoAF9sal9mZl9pcGFpcnNfYXV4LmVoAF9sal9mZl9jb3Jv
dXRpbmVfd3JhcF9hdXguZWgAX2xqX2ZmX21hdGhfbWF4LmVoAF9sal9mZl9tYXRoX3Bvdy5laABf
bGpfdm1fbGVhdmVfdW53LmVoAF9sal92bWV0YV9hcml0aF92di5laABfbGpfZmZmX3Jlc3R2LmVo
AF9sal92bWV0YV90c2V0di5laABfbGpfdm1ldGFfdGdldHYuZWgAX2xqX3ZtZXRhX2FyaXRoX252
LmVoAF9sal9mZl9uZXh0LmVoAF9sal9mZl9tYXRoX3NxcnQuZWgAX2xqX2ZmX2Fzc2VydC5laABf
bGpfZmZfYml0X2Jub3QuZWgAX2xqX3ZtZXRhX2NhbGx0LmVoAF9sal9mZl9iaXRfdG9iaXQuZWgA
X2xqX2ZmX2JpdF9hcnNoaWZ0LmVoAF9sal9mZl9iaXRfcnNoaWZ0LmVoAF9sal9mZl9iaXRfbHNo
aWZ0LmVoAF9sal9mZl9yYXdnZXQuZWgAX2xqX2NvbnRfY29uZHQuZWgAX2xqX2NvbnRfY2F0LmVo
AF9sal92bWV0YV90c2V0cy5laABfbGpfdm1ldGFfdGdldHMuZWgAX2xqX2ZmX2lwYWlycy5laABf
bGpfZmZfcGFpcnMuZWgAX2xqX2ZmX21hdGhfYWNvcy5laABfbGpfZmZfbWF0aF9jb3MuZWgAX2xq
X2ZmZl9yZXMuZWgAX2xqX2ZmX21hdGhfYWJzLmVoAF9sal9mZmZfbmV3c3RyLmVoAF9sal9mZmZf
cmVzc3RyLmVoAF9sal92bWV0YV90c2V0ci5laABfbGpfdm1ldGFfdGdldHIuZWgAX2xqX2ZmX2Jp
dF9ieG9yLmVoAF9sal9mZl9iaXRfcm9yLmVoAF9sal9mZl9tYXRoX2Zsb29yLmVoAF9sal92bWV0
YV9mb3IuZWgAX2xqX2ZmX2JpdF9ib3IuZWgAX2xqX2ZmX3N0cmluZ19sb3dlci5laABfbGpfZmZf
c3RyaW5nX3VwcGVyLmVoAF9sal92bV9leGl0X2hhbmRsZXIuZWgAX2xqX2ZmX3RvbnVtYmVyLmVo
AF9sal9mZl9zdHJpbmdfY2hhci5laABfbGpfZmZfbWF0aF9mcmV4cC5laABfbGpfZmZfbWF0aF9s
ZGV4cC5laABfbGpfZmZfbWF0aF9leHAuZWgAX2xqX3ZtX2V4aXRfaW50ZXJwLmVoAF9sal92bV9o
b3Rsb29wLmVoAF9sal92bWV0YV9iaW5vcC5laABfbGpfY29udF9ub3AuZWgAX2xqX3ZtX3JldHVy
bnAuZWgAX2xqX3ZtZXRhX2NvbXAuZWgAX2xqX2ZmZl9nY3N0ZXAuZWgAX2xqX3ZtX2xlYXZlX2Nw
LmVoAF9sal9mZl9iaXRfYnN3YXAuZWgAX2xqX3ZtZXRhX2FyaXRoX3ZuLmVoAF9sal9mZmZfcmVz
bi5laABfbGpfdm1fcmV0dXJuLmVoAF9sal9mZl9tYXRoX2FzaW4uZWgAX2xqX2ZmX21hdGhfc2lu
LmVoAF9sal9mZl9tYXRoX21pbi5laABfbGpfdm1ldGFfbGVuLmVoAF9sal9mZl9tYXRoX2F0YW4u
ZWgAX2xqX2ZmX21hdGhfdGFuLmVoAF9sal92bWV0YV91bm0uZWgAX2xqX2ZmX2JpdF9yb2wuZWgA
X2xqX3ZtX2hvdGNhbGwuZWgAX2xqX2ZmX3hwY2FsbC5laABfbGpfdm1fY3BjYWxsLmVoAF9sal92
bV9wY2FsbC5laABfbGpfZmZfcGNhbGwuZWgAX2xqX3ZtX2NhbGwuZWgAX2xqX3ZtX2ZmaV9jYWxs
LmVoAF9sal92bWV0YV9jYWxsLmVoAF9sal9mZl9tYXRoX2NlaWwuZWgAX2xqX3ZtX2NhbGxfdGFp
bC5laABfbGpfdm1ldGFfZXF1YWwuZWgAX2xqX3ZtX2dyb3dzdGFja19sLmVoAF9sal92bV9yZXRo
b29rLmVoAF9sal92bV9pbnNob29rLmVoAF9sal92bV9jYWxsaG9vay5laABfbGpfdm1fcHJvZmhv
b2suZWgAX2xqX2NvbnRfaG9vay5laABfbGpfZmZmX2ZhbGxiYWNrLmVoAF9sal9jb250X2ZmaV9j
YWxsYmFjay5laABfbGpfdm1fZmZpX2NhbGxiYWNrLmVoAF9sal92bV9tb2RpLmVoAF9sal9mZl9t
YXRoX2Nvc2guZWgAX2xqX2ZmX21hdGhfc2luaC5laABfbGpfZmZfbWF0aF90YW5oLmVoAF9sal92
bV91bndpbmRfZmZfZWguZWgAX2xqX3ZtX3Vud2luZF9jX2VoLmVoAF9sal9jb250X3N0aXRjaC5l
aABfbGpfY29udF9kaXNwYXRjaC5laABfbGpfdm1fY2FsbF9kaXNwYXRjaC5laABfbGpfZmZfbWF0
aF9sb2cuZWgAX2xqX2ZmX3Rvc3RyaW5nLmVoAF9sal92bV91bndpbmRfZmYuZWgAX2xqX2ZmX21h
dGhfbW9kZi5laABfbGpfY29udF9jb25kZi5laABfbGpfdm1fY2FsbF9kaXNwYXRjaF9mLmVoAF9s
al9mZl9zdHJpbmdfYnl0ZS5laABfbGpfZmZfc3RyaW5nX3JldmVyc2UuZWgAX2xqX3ZtZXRhX2lz
dHlwZS5laABfbGpfZmZfdHlwZS5laABfbGpfdm1fcmVzdW1lLmVoAF9sal9mZl9jb3JvdXRpbmVf
cmVzdW1lLmVoAF9sal9mZl9zZXRtZXRhdGFibGUuZWgAX2xqX2ZmX2dldG1ldGF0YWJsZS5laABf
bGpfdm1fcmVjb3JkLmVoAF9sal9mZl9tYXRoX2Ztb2QuZWgAX2xqX2ZmX2JpdF9iYW5kLmVoAF9s
al9mZl9jb3JvdXRpbmVfeWllbGQuZWgAX2xqX3ZtZXRhX2VxdWFsX2NkLmVoAF9sal92bV9yZXR1
cm5jLmVoAF9sal92bV9ncm93c3RhY2tfYy5laABfbGpfdm1fdW53aW5kX2MuZWgAX2xqX2ZmX3N0
cmluZ19zdWIuZWgAX2xqX3ZtZXRhX3RzZXRiLmVoAF9sal92bWV0YV90Z2V0Yi5laABfbGpfdm1f
dG9iaXRfZmIuZWgAX2xqX2NvbnRfcmEuZWgAX2xqX0JDX1BPVy5laABfbGpfQkNfVE5FVy5laABf
bGpfQkNfRk5FVy5laABfbGpfQkNfRlVOQ0NXLmVoAF9sal9CQ19ESVZWVi5laABfbGpfQkNfTVVM
VlYuZWgAX2xqX0JDX01PRFZWLmVoAF9sal9CQ19BRERWVi5laABfbGpfQkNfU1VCVlYuZWgAX2xq
X0JDX1VTRVRWLmVoAF9sal9CQ19UU0VUVi5laABfbGpfQkNfVEdFVFYuZWgAX2xqX0JDX0lTRVFW
LmVoAF9sal9CQ19NT1YuZWgAX2xqX0JDX0RJVk5WLmVoAF9sal9CQ19NVUxOVi5laABfbGpfQkNf
TU9ETlYuZWgAX2xqX0JDX0FERE5WLmVoAF9sal9CQ19TVUJOVi5laABfbGpfQkNfSVNORVYuZWgA
X2xqX0JDX0pGVU5DVi5laABfbGpfQkNfSUZVTkNWLmVoAF9sal9CQ19JU05FWFQuZWgAX2xqX0JD
X0lTVC5laABfbGpfQkNfS1NIT1JULmVoAF9sal9CQ19OT1QuZWgAX2xqX0JDX0NBTExNVC5laABf
bGpfQkNfSVNMVC5laABfbGpfQkNfQ0FMTFQuZWgAX2xqX0JDX0lTR1QuZWgAX2xqX0JDX0dTRVQu
ZWgAX2xqX0JDX1JFVC5laABfbGpfQkNfVUdFVC5laABfbGpfQkNfR0dFVC5laABfbGpfQkNfQ0FU
LmVoAF9sal9CQ19VU0VUUy5laABfbGpfQkNfVFNFVFMuZWgAX2xqX0JDX1RHRVRTLmVoAF9sal9C
Q19JU0VRUy5laABfbGpfQkNfSVNORVMuZWgAX2xqX0JDX0tTVFIuZWgAX2xqX0JDX1RTRVRSLmVo
AF9sal9CQ19UR0VUUi5laABfbGpfQkNfVERVUC5laABfbGpfQkNfVVNFVFAuZWgAX2xqX0JDX0lT
RVFQLmVoAF9sal9CQ19MT09QLmVoAF9sal9CQ19KTE9PUC5laABfbGpfQkNfSUxPT1AuZWgAX2xq
X0JDX0pNUC5laABfbGpfQkNfSVNORVAuZWgAX2xqX0JDX1VDTE8uZWgAX2xqX0JDX0RJVlZOLmVo
AF9sal9CQ19NVUxWTi5laABfbGpfQkNfTU9EVk4uZWgAX2xqX0JDX0FERFZOLmVoAF9sal9CQ19T
VUJWTi5laABfbGpfQkNfVVNFVE4uZWgAX2xqX0JDX0lURVJOLmVoAF9sal9CQ19JU0VRTi5laABf
bGpfQkNfSVNORU4uZWgAX2xqX0JDX0xFTi5laABfbGpfQkNfSVNOVU0uZWgAX2xqX0JDX0tOVU0u
ZWgAX2xqX0JDX1RTRVRNLmVoAF9sal9CQ19SRVRNLmVoAF9sal9CQ19VTk0uZWgAX2xqX0JDX0NB
TExNLmVoAF9sal9CQ19GT1JMLmVoAF9sal9CQ19KRk9STC5laABfbGpfQkNfSUZPUkwuZWgAX2xq
X0JDX0lURVJMLmVoAF9sal9CQ19KSVRFUkwuZWgAX2xqX0JDX0lJVEVSTC5laABfbGpfQkNfQ0FM
TC5laABfbGpfQkNfS05JTC5laABfbGpfQkNfS1BSSS5laABfbGpfQkNfRk9SSS5laABfbGpfQkNf
SkZPUkkuZWgAX2xqX0JDX1ZBUkcuZWgAX2xqX0JDX0lTRi5laABfbGpfQkNfRlVOQ0YuZWgAX2xq
X0JDX0pGVU5DRi5laABfbGpfQkNfSUZVTkNGLmVoAF9sal9CQ19JU1RZUEUuZWgAX2xqX0JDX0lT
TEUuZWgAX2xqX0JDX0lTR0UuZWgAX2xqX0JDX0lTVEMuZWgAX2xqX0JDX0lURVJDLmVoAF9sal9C
Q19JU0ZDLmVoAF9sal9CQ19GVU5DQy5laABfbGpfQkNfVFNFVEIuZWgAX2xqX0JDX1RHRVRCLmVo
AF9sal9CQ19LQ0RBVEEuZWgAX2xqX2ZmX21hdGhfYXRhbjIuZWgAX2xqX3ZtZXRhX3RzZXRzMS5l
aABfbGpfdm1ldGFfdGdldHMxLmVoAF9sal9mZmZfcmVzMS5laABfbGpfQkNfUkVUMS5laABfbGpf
QkNfUkVUMC5laABfbGpfZmZfbWF0aF9sb2cxMC5laABfbGpfY29udF9zdGl0Y2gAX2xqX2Rpc3Bh
dGNoX3N0aXRjaABfbGpfY29udF9kaXNwYXRjaABfbGpfdm1fY2FsbF9kaXNwYXRjaABfbGpfZmZf
bWF0aF9sb2cAX2xqX2ZmX3Rvc3RyaW5nAF9sal9lcnJfdW53aW5kX2R3YXJmAF9sal92bV91bndp
bmRfZmYAX2xqX2ZmX21hdGhfbW9kZgBfbGpfY29udF9jb25kZgBfbGpfdm1fY2FsbF9kaXNwYXRj
aF9mAF9sal90YWJfcmVhc2l6ZQBfbGpfY2NhbGxiYWNrX2xlYXZlAF9sal9mZl9zdHJpbmdfYnl0
ZQBfbGpfYnVmX3B1dHN0cl9yZXZlcnNlAF9sal9mZl9zdHJpbmdfcmV2ZXJzZQBfbGpfdm1ldGFf
aXN0eXBlAF9sal9tZXRhX2lzdHlwZQBfbGpfZmZfdHlwZQBfbGpfdm1fcmVzdW1lAF9sal9mZl9j
b3JvdXRpbmVfcmVzdW1lAF9sal9kaXNwYXRjaF9wcm9maWxlAF9sal9mZl9zZXRtZXRhdGFibGUA
X2xqX2ZmX2dldG1ldGF0YWJsZQBfbGpfZXJyX3RyYWNlAF9sal92bV9yZWNvcmQAX2xqX2ZmX21h
dGhfZm1vZABfbGpfZmZfYml0X2JhbmQAX2xqX2ZmX2Nvcm91dGluZV95aWVsZABfbGpfdm1ldGFf
ZXF1YWxfY2QAX2xqX21ldGFfZXF1YWxfY2QAX2xqX3ZtX3JldHVybmMAX2xqX2Z1bmNfbmV3TF9n
YwBfbGpfdm1fZ3Jvd3N0YWNrX2MAX2xqX3ZtX3Vud2luZF9jAF9sal9mZl9zdHJpbmdfc3ViAF9s
al92bWV0YV90c2V0YgBfbGpfdm1ldGFfdGdldGIAX2xqX3ZtX3RvYml0X2ZiAF9sal9jb250X3Jh
AF9sal9CQ19QT1cAX2xqX0JDX1RORVcAX2xqX0JDX0ZORVcAX2xqX0JDX0ZVTkNDVwBfbGpfQkNf
RElWVlYAX2xqX0JDX01VTFZWAF9sal9CQ19NT0RWVgBfbGpfQkNfQUREVlYAX2xqX0JDX1NVQlZW
AF9sal9CQ19VU0VUVgBfbGpfQkNfVFNFVFYAX2xqX0JDX1RHRVRWAF9sal9CQ19JU0VRVgBfbGpf
QkNfTU9WAF9sal9CQ19ESVZOVgBfbGpfQkNfTVVMTlYAX2xqX0JDX01PRE5WAF9sal9CQ19BRERO
VgBfbGpfQkNfU1VCTlYAX2xqX0JDX0lTTkVWAF9sal9CQ19GVU5DVgBfbGpfQkNfSkZVTkNWAF9s
al9CQ19JRlVOQ1YAX2xqX0JDX0lTTkVYVABfbGpfQkNfSVNUAF9sal9CQ19LU0hPUlQAX2xqX0JD
X05PVABfbGpfQkNfQ0FMTE1UAF9sal9CQ19JU0xUAF9sal9CQ19DQUxMVABfbGpfQkNfSVNHVABf
bGpfQkNfR1NFVABfbGpfQkNfUkVUAF9sal9CQ19VR0VUAF9sal9CQ19HR0VUAF9sal9CQ19DQVQA
X2xqX0JDX1VTRVRTAF9sal9CQ19UU0VUUwBfbGpfQkNfVEdFVFMAX2xqX0JDX0lTRVFTAF9sal9C
Q19JU05FUwBfbGpfQkNfS1NUUgBfbGpfQkNfVFNFVFIAX2xqX0JDX1RHRVRSAF9sal9CQ19URFVQ
AF9sal9CQ19VU0VUUABfbGpfQkNfSVNFUVAAX2xqX0JDX0xPT1AAX2xqX0JDX0pMT09QAF9sal9C
Q19JTE9PUABfbGpfQkNfSk1QAF9sal9CQ19JU05FUABfbGpfQkNfVUNMTwBfbGpfQkNfRElWVk4A
X2xqX0JDX01VTFZOAF9sal9CQ19NT0RWTgBfbGpfQkNfQUREVk4AX2xqX0JDX1NVQlZOAF9sal9C
Q19VU0VUTgBfbGpfQkNfSVRFUk4AX2xqX0JDX0lTRVFOAF9sal9CQ19JU05FTgBfbGpfQkNfTEVO
AF9sal9CQ19JU05VTQBfbGpfQkNfS05VTQBfbGpfQkNfVFNFVE0AX2xqX0JDX1JFVE0AX2xqX0JD
X1VOTQBfbGpfQkNfQ0FMTE0AX2xqX0JDX0ZPUkwAX2xqX0JDX0pGT1JMAF9sal9CQ19JRk9STABf
bGpfQkNfSVRFUkwAX2xqX0JDX0pJVEVSTABfbGpfQkNfSUlURVJMAF9sal9CQ19DQUxMAF9sal9C
Q19LTklMAF9sal9CQ19LUFJJAF9sal9CQ19GT1JJAF9sal9CQ19KRk9SSQBfbGpfQkNfVkFSRwBf
bGpfQkNfSVNGAF9sal9CQ19GVU5DRgBfbGpfQkNfSkZVTkNGAF9sal9CQ19JRlVOQ0YAX2xqX0JD
X0lTVFlQRQBfbGpfQkNfSVNMRQBfbGpfQkNfSVNHRQBfbGpfQkNfSVNUQwBfbGpfQkNfSVRFUkMA
X2xqX0JDX0lTRkMAX2xqX0JDX0ZVTkNDAF9sal9CQ19UU0VUQgBfbGpfQkNfVEdFVEIAX2xqX0JD
X0tDREFUQQBsdG1wMgBfbGpfZmZfbWF0aF9hdGFuMgBFSF9mcmFtZTIAX2xqX3ZtZXRhX3RzZXRz
MQBfbGpfdm1ldGFfdGdldHMxAF9sal9mZmZfcmVzMQBsdG1wMQBFSF9mcmFtZTEAX2xqX0JDX1JF
VDEAbHRtcDAAX2xqX0JDX1JFVDAAX2xqX2ZmX21hdGhfbG9nMTAA
src/lj_vm.o: file format Mach-O arm64
Disassembly of section __TEXT,__text:
0000000000000000 ltmp0:
0: 60 7a 7b f8 ldr x0, [x19, x27, lsl #3]
4: b1 06 40 79 ldrh w17, [x21, #2]
8: 61 7a 7c f8 ldr x1, [x19, x28, lsl #3]
c: b5 12 00 91 add x21, x21, #4
10: b1 0a 11 8b add x17, x21, x17, lsl #2
14: 31 82 40 d1 sub x17, x17, #32, lsl #12
18: 3f 83 40 eb cmp x25, x0, lsr #32
1c: 61 01 00 54 b.ne #44 <ltmp0+0x48>
20: 3f 83 41 eb cmp x25, x1, lsr #32
24: 21 02 00 54 b.ne #68 <ltmp0+0x68>
28: 1f 00 01 6b cmp w0, w1
2c: 35 b2 95 9a csel x21, x17, x21, lt
30: b0 46 40 b8 ldr w16, [x21], #4
34: c9 0e 30 8b add x9, x22, w16, uxtb #3
38: 1b 3e 48 d3 ubfx x27, x16, #8, #8
3c: 28 b5 47 f9 ldr x8, [x9, #3944]
40: 1c 7e 50 d3 ubfx x28, x16, #16, #16
44: 00 01 1f d6 br x8
48: 60 7a 7b fc ldr d0, [x19, x27, lsl #3]
4c: 03 2f 01 54 b.lo #9696 <_lj_vmeta_comp>
50: 61 7a 7c fc ldr d1, [x19, x28, lsl #3]
54: 3f 83 41 eb cmp x25, x1, lsr #32
58: e8 00 00 54 b.hi #28 <ltmp0+0x74>
5c: 81 2e 01 54 b.ne #9680 <_lj_vmeta_comp>
60: 21 00 62 1e scvtf d1, w1
64: 04 00 00 14 b #16 <ltmp0+0x74>
68: 61 7a 7c fc ldr d1, [x19, x28, lsl #3]
6c: 03 2e 01 54 b.lo #9664 <_lj_vmeta_comp>
70: 00 00 62 1e scvtf d0, w0
74: 00 20 61 1e fcmp d0, d1
78: 35 32 95 9a csel x21, x17, x21, lo
7c: ed ff ff 17 b #-76 <ltmp0+0x30>
0000000000000080 _lj_BC_ISGE:
80: 60 7a 7b f8 ldr x0, [x19, x27, lsl #3]
84: b1 06 40 79 ldrh w17, [x21, #2]
88: 61 7a 7c f8 ldr x1, [x19, x28, lsl #3]
8c: b5 12 00 91 add x21, x21, #4
90: b1 0a 11 8b add x17, x21, x17, lsl #2
94: 31 82 40 d1 sub x17, x17, #32, lsl #12
98: 3f 83 40 eb cmp x25, x0, lsr #32
9c: 61 01 00 54 b.ne #44 <_lj_BC_ISGE+0x48>
a0: 3f 83 41 eb cmp x25, x1, lsr #32
a4: 21 02 00 54 b.ne #68 <_lj_BC_ISGE+0x68>
a8: 1f 00 01 6b cmp w0, w1
ac: 35 a2 95 9a csel x21, x17, x21, ge
b0: b0 46 40 b8 ldr w16, [x21], #4
b4: c9 0e 30 8b add x9, x22, w16, uxtb #3
b8: 1b 3e 48 d3 ubfx x27, x16, #8, #8
bc: 28 b5 47 f9 ldr x8, [x9, #3944]
c0: 1c 7e 50 d3 ubfx x28, x16, #16, #16
c4: 00 01 1f d6 br x8
c8: 60 7a 7b fc ldr d0, [x19, x27, lsl #3]
cc: 03 2b 01 54 b.lo #9568 <_lj_vmeta_comp>
d0: 61 7a 7c fc ldr d1, [x19, x28, lsl #3]
d4: 3f 83 41 eb cmp x25, x1, lsr #32
d8: e8 00 00 54 b.hi #28 <_lj_BC_ISGE+0x74>
dc: 81 2a 01 54 b.ne #9552 <_lj_vmeta_comp>
e0: 21 00 62 1e scvtf d1, w1
e4: 04 00 00 14 b #16 <_lj_BC_ISGE+0x74>
e8: 61 7a 7c fc ldr d1, [x19, x28, lsl #3]
ec: 03 2a 01 54 b.lo #9536 <_lj_vmeta_comp>
f0: 00 00 62 1e scvtf d0, w0
f4: 00 20 61 1e fcmp d0, d1
f8: 35 22 95 9a csel x21, x17, x21, hs
fc: ed ff ff 17 b #-76 <_lj_BC_ISGE+0x30>
0000000000000100 _lj_BC_ISLE:
100: 60 7a 7b f8 ldr x0, [x19, x27, lsl #3]
104: b1 06 40 79 ldrh w17, [x21, #2]
108: 61 7a 7c f8 ldr x1, [x19, x28, lsl #3]
10c: b5 12 00 91 add x21, x21, #4
110: b1 0a 11 8b add x17, x21, x17, lsl #2
114: 31 82 40 d1 sub x17, x17, #32, lsl #12
118: 3f 83 40 eb cmp x25, x0, lsr #32
11c: 61 01 00 54 b.ne #44 <_lj_BC_ISLE+0x48>
120: 3f 83 41 eb cmp x25, x1, lsr #32
124: 21 02 00 54 b.ne #68 <_lj_BC_ISLE+0x68>
128: 1f 00 01 6b cmp w0, w1
12c: 35 d2 95 9a csel x21, x17, x21, le
130: b0 46 40 b8 ldr w16, [x21], #4
134: c9 0e 30 8b add x9, x22, w16, uxtb #3
138: 1b 3e 48 d3 ubfx x27, x16, #8, #8
13c: 28 b5 47 f9 ldr x8, [x9, #3944]
140: 1c 7e 50 d3 ubfx x28, x16, #16, #16
144: 00 01 1f d6 br x8
148: 60 7a 7b fc ldr d0, [x19, x27, lsl #3]
14c: 03 27 01 54 b.lo #9440 <_lj_vmeta_comp>
150: 61 7a 7c fc ldr d1, [x19, x28, lsl #3]
154: 3f 83 41 eb cmp x25, x1, lsr #32
158: e8 00 00 54 b.hi #28 <_lj_BC_ISLE+0x74>
15c: 81 26 01 54 b.ne #9424 <_lj_vmeta_comp>
160: 21 00 62 1e scvtf d1, w1
164: 04 00 00 14 b #16 <_lj_BC_ISLE+0x74>
168: 61 7a 7c fc ldr d1, [x19, x28, lsl #3]
16c: 03 26 01 54 b.lo #9408 <_lj_vmeta_comp>
170: 00 00 62 1e scvtf d0, w0
174: 00 20 61 1e fcmp d0, d1
178: 35 92 95 9a csel x21, x17, x21, ls
17c: ed ff ff 17 b #-76 <_lj_BC_ISLE+0x30>
0000000000000180 _lj_BC_ISGT:
180: 60 7a 7b f8 ldr x0, [x19, x27, lsl #3]
184: b1 06 40 79 ldrh w17, [x21, #2]
188: 61 7a 7c f8 ldr x1, [x19, x28, lsl #3]
18c: b5 12 00 91 add x21, x21, #4
190: b1 0a 11 8b add x17, x21, x17, lsl #2
194: 31 82 40 d1 sub x17, x17, #32, lsl #12
198: 3f 83 40 eb cmp x25, x0, lsr #32
19c: 61 01 00 54 b.ne #44 <_lj_BC_ISGT+0x48>
1a0: 3f 83 41 eb cmp x25, x1, lsr #32
1a4: 21 02 00 54 b.ne #68 <_lj_BC_ISGT+0x68>
1a8: 1f 00 01 6b cmp w0, w1
1ac: 35 c2 95 9a csel x21, x17, x21, gt
1b0: b0 46 40 b8 ldr w16, [x21], #4
1b4: c9 0e 30 8b add x9, x22, w16, uxtb #3
1b8: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1bc: 28 b5 47 f9 ldr x8, [x9, #3944]
1c0: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1c4: 00 01 1f d6 br x8
1c8: 60 7a 7b fc ldr d0, [x19, x27, lsl #3]
1cc: 03 23 01 54 b.lo #9312 <_lj_vmeta_comp>
1d0: 61 7a 7c fc ldr d1, [x19, x28, lsl #3]
1d4: 3f 83 41 eb cmp x25, x1, lsr #32
1d8: e8 00 00 54 b.hi #28 <_lj_BC_ISGT+0x74>
1dc: 81 22 01 54 b.ne #9296 <_lj_vmeta_comp>
1e0: 21 00 62 1e scvtf d1, w1
1e4: 04 00 00 14 b #16 <_lj_BC_ISGT+0x74>
1e8: 61 7a 7c fc ldr d1, [x19, x28, lsl #3]
1ec: 03 22 01 54 b.lo #9280 <_lj_vmeta_comp>
1f0: 00 00 62 1e scvtf d0, w0
1f4: 00 20 61 1e fcmp d0, d1
1f8: 35 82 95 9a csel x21, x17, x21, hi
1fc: ed ff ff 17 b #-76 <_lj_BC_ISGT+0x30>
0000000000000200 _lj_BC_ISEQV:
200: 60 7a 7b f8 ldr x0, [x19, x27, lsl #3]
204: 7c 0e 1c 8b add x28, x19, x28, lsl #3
208: b1 06 40 79 ldrh w17, [x21, #2]
20c: 82 03 40 f9 ldr x2, [x28]
210: b5 12 00 91 add x21, x21, #4
214: b1 0a 11 8b add x17, x21, x17, lsl #2
218: 31 82 40 d1 sub x17, x17, #32, lsl #12
21c: 4f fc 6f 93 asr x15, x2, #47
220: ff 39 00 b1 cmn x15, #14
224: e9 0c 00 54 b.ls #412 <_lj_BC_ISEQN+0x1c>
228: 08 fc 6f 93 asr x8, x0, #47
22c: ff 2d 00 b1 cmn x15, #11
230: 04 19 4b ba ccmn x8, #11, #4, ne
234: e0 24 01 54 b.eq #9372 <_lj_vmeta_equal_cd>
238: 1f 00 02 eb cmp x0, x2
23c: 01 01 00 54 b.ne #32 <_lj_BC_ISEQV+0x5c>
240: f5 03 11 aa mov x21, x17
244: b0 46 40 b8 ldr w16, [x21], #4
248: c9 0e 30 8b add x9, x22, w16, uxtb #3
24c: 1b 3e 48 d3 ubfx x27, x16, #8, #8
250: 28 b5 47 f9 ldr x8, [x9, #3944]
254: 1c 7e 50 d3 ubfx x28, x16, #16, #16
258: 00 01 1f d6 br x8
25c: ff 01 08 eb cmp x15, x8
260: e2 09 4c ba ccmn x15, #12, #2, eq
264: 08 ff ff 54 b.hi #-32 <_lj_BC_ISEQV+0x44>
268: 01 b8 40 92 and x1, x0, #0x7fffffffffff
26c: 2a 10 40 f9 ldr x10, [x1, #32]
270: aa fe ff b4 cbz x10, #-44 <_lj_BC_ISEQV+0x44>
274: 49 29 40 39 ldrb w9, [x10, #10]
278: 03 00 80 52 mov w3, #0
27c: 49 fe 27 37 tbnz w9, #4, #-56 <_lj_BC_ISEQV+0x44>
280: 0d 09 00 14 b #9268 <_lj_vmeta_equal>
0000000000000284 _lj_BC_ISNEV:
284: 60 7a 7b f8 ldr x0, [x19, x27, lsl #3]
288: 7c 0e 1c 8b add x28, x19, x28, lsl #3
28c: b1 06 40 79 ldrh w17, [x21, #2]
290: 82 03 40 f9 ldr x2, [x28]
294: b5 12 00 91 add x21, x21, #4
298: b1 0a 11 8b add x17, x21, x17, lsl #2
29c: 31 82 40 d1 sub x17, x17, #32, lsl #12
2a0: 4f fc 6f 93 asr x15, x2, #47
2a4: ff 39 00 b1 cmn x15, #14
2a8: 29 0d 00 54 b.ls #420 <_lj_BC_ISNEN+0x1c>
2ac: 08 fc 6f 93 asr x8, x0, #47
2b0: ff 2d 00 b1 cmn x15, #11
2b4: 04 19 4b ba ccmn x8, #11, #4, ne
2b8: c0 20 01 54 b.eq #9240 <_lj_vmeta_equal_cd>
2bc: 1f 00 02 eb cmp x0, x2
2c0: e1 00 00 54 b.ne #28 <_lj_BC_ISNEV+0x58>
2c4: b0 46 40 b8 ldr w16, [x21], #4
2c8: c9 0e 30 8b add x9, x22, w16, uxtb #3
2cc: 1b 3e 48 d3 ubfx x27, x16, #8, #8
2d0: 28 b5 47 f9 ldr x8, [x9, #3944]
2d4: 1c 7e 50 d3 ubfx x28, x16, #16, #16
2d8: 00 01 1f d6 br x8
2dc: ff 01 08 eb cmp x15, x8
2e0: e2 09 4c ba ccmn x15, #12, #2, eq
2e4: e8 fa ff 54 b.hi #-164 <_lj_BC_ISEQV+0x40>
2e8: 01 b8 40 92 and x1, x0, #0x7fffffffffff
2ec: 2a 10 40 f9 ldr x10, [x1, #32]
2f0: 8a fa ff b4 cbz x10, #-176 <_lj_BC_ISEQV+0x40>
2f4: 49 29 40 39 ldrb w9, [x10, #10]
2f8: 23 00 80 52 mov w3, #1
2fc: 29 fa 27 37 tbnz w9, #4, #-188 <_lj_BC_ISEQV+0x40>
300: ed 08 00 14 b #9140 <_lj_vmeta_equal>
0000000000000304 _lj_BC_ISEQS:
304: 60 7a 7b f8 ldr x0, [x19, x27, lsl #3]
308: fc 03 3c aa mvn x28, x28
30c: b1 06 40 79 ldrh w17, [x21, #2]
310: 81 7a 7c f8 ldr x1, [x20, x28, lsl #3]
314: b5 12 00 91 add x21, x21, #4
318: 88 00 80 92 mov x8, #-5
31c: 0f fc 6f 93 asr x15, x0, #47
320: b1 0a 11 8b add x17, x21, x17, lsl #2
324: 21 bc 08 8b add x1, x1, x8, lsl #47
328: 31 82 40 d1 sub x17, x17, #32, lsl #12
32c: ff 2d 00 b1 cmn x15, #11
330: 00 1d 01 54 b.eq #9120 <_lj_vmeta_equal_cd>
334: 1f 00 01 eb cmp x0, x1
338: 35 02 95 9a csel x21, x17, x21, eq
33c: b0 46 40 b8 ldr w16, [x21], #4
340: c9 0e 30 8b add x9, x22, w16, uxtb #3
344: 1b 3e 48 d3 ubfx x27, x16, #8, #8
348: 28 b5 47 f9 ldr x8, [x9, #3944]
34c: 1c 7e 50 d3 ubfx x28, x16, #16, #16
350: 00 01 1f d6 br x8
0000000000000354 _lj_BC_ISNES:
354: 60 7a 7b f8 ldr x0, [x19, x27, lsl #3]
358: fc 03 3c aa mvn x28, x28
35c: b1 06 40 79 ldrh w17, [x21, #2]
360: 81 7a 7c f8 ldr x1, [x20, x28, lsl #3]
364: b5 12 00 91 add x21, x21, #4
368: 88 00 80 92 mov x8, #-5
36c: 0f fc 6f 93 asr x15, x0, #47
370: b1 0a 11 8b add x17, x21, x17, lsl #2
374: 21 bc 08 8b add x1, x1, x8, lsl #47
378: 31 82 40 d1 sub x17, x17, #32, lsl #12
37c: ff 2d 00 b1 cmn x15, #11
380: 80 1a 01 54 b.eq #9040 <_lj_vmeta_equal_cd>
384: 1f 00 01 eb cmp x0, x1
388: 35 12 95 9a csel x21, x17, x21, ne
38c: b0 46 40 b8 ldr w16, [x21], #4
390: c9 0e 30 8b add x9, x22, w16, uxtb #3
394: 1b 3e 48 d3 ubfx x27, x16, #8, #8
398: 28 b5 47 f9 ldr x8, [x9, #3944]
39c: 1c 7e 50 d3 ubfx x28, x16, #16, #16
3a0: 00 01 1f d6 br x8
00000000000003a4 _lj_BC_ISEQN:
3a4: 60 7a 7b f8 ldr x0, [x19, x27, lsl #3]
3a8: 9c 0e 1c 8b add x28, x20, x28, lsl #3
3ac: b1 06 40 79 ldrh w17, [x21, #2]
3b0: 82 03 40 f9 ldr x2, [x28]
3b4: b5 12 00 91 add x21, x21, #4
3b8: b1 0a 11 8b add x17, x21, x17, lsl #2
3bc: 31 82 40 d1 sub x17, x17, #32, lsl #12
3c0: 3f 83 40 eb cmp x25, x0, lsr #32
3c4: 61 01 00 54 b.ne #44 <_lj_BC_ISEQN+0x4c>
3c8: 3f 83 42 eb cmp x25, x2, lsr #32
3cc: 21 02 00 54 b.ne #68 <_lj_BC_ISEQN+0x6c>
3d0: 1f 00 02 6b cmp w0, w2
3d4: 35 02 95 9a csel x21, x17, x21, eq
3d8: b0 46 40 b8 ldr w16, [x21], #4
3dc: c9 0e 30 8b add x9, x22, w16, uxtb #3
3e0: 1b 3e 48 d3 ubfx x27, x16, #8, #8
3e4: 28 b5 47 f9 ldr x8, [x9, #3944]
3e8: 1c 7e 50 d3 ubfx x28, x16, #16, #16
3ec: 00 01 1f d6 br x8
3f0: 83 01 00 54 b.lo #48 <_lj_BC_ISEQN+0x7c>
3f4: 60 7a 7b fc ldr d0, [x19, x27, lsl #3]
3f8: 81 03 40 fd ldr d1, [x28]
3fc: 3f 83 42 eb cmp x25, x2, lsr #32
400: 41 00 00 54 b.ne #8 <_lj_BC_ISEQN+0x64>
404: 41 00 62 1e scvtf d1, w2
408: 00 20 61 1e fcmp d0, d1
40c: f2 ff ff 17 b #-56 <_lj_BC_ISEQN+0x30>
410: 81 03 40 fd ldr d1, [x28]
414: 00 00 62 1e scvtf d0, w0
418: 00 20 61 1e fcmp d0, d1
41c: ee ff ff 17 b #-72 <_lj_BC_ISEQN+0x30>
420: 0f fc 6f 93 asr x15, x0, #47
424: ff 2d 00 b1 cmn x15, #11
428: 81 fd ff 54 b.ne #-80 <_lj_BC_ISEQN+0x34>
42c: a9 08 00 14 b #8868 <_lj_vmeta_equal_cd>
0000000000000430 _lj_BC_ISNEN:
430: 60 7a 7b f8 ldr x0, [x19, x27, lsl #3]
434: 9c 0e 1c 8b add x28, x20, x28, lsl #3
438: b1 06 40 79 ldrh w17, [x21, #2]
43c: 82 03 40 f9 ldr x2, [x28]
440: b5 12 00 91 add x21, x21, #4
444: b1 0a 11 8b add x17, x21, x17, lsl #2
448: 31 82 40 d1 sub x17, x17, #32, lsl #12
44c: 3f 83 40 eb cmp x25, x0, lsr #32
450: 61 01 00 54 b.ne #44 <_lj_BC_ISNEN+0x4c>
454: 3f 83 42 eb cmp x25, x2, lsr #32
458: 21 02 00 54 b.ne #68 <_lj_BC_ISNEN+0x6c>
45c: 1f 00 02 6b cmp w0, w2
460: 35 12 95 9a csel x21, x17, x21, ne
464: b0 46 40 b8 ldr w16, [x21], #4
468: c9 0e 30 8b add x9, x22, w16, uxtb #3
46c: 1b 3e 48 d3 ubfx x27, x16, #8, #8
470: 28 b5 47 f9 ldr x8, [x9, #3944]
474: 1c 7e 50 d3 ubfx x28, x16, #16, #16
478: 00 01 1f d6 br x8
47c: 83 01 00 54 b.lo #48 <_lj_BC_ISNEN+0x7c>
480: 60 7a 7b fc ldr d0, [x19, x27, lsl #3]
484: 81 03 40 fd ldr d1, [x28]
488: 3f 83 42 eb cmp x25, x2, lsr #32
48c: 41 00 00 54 b.ne #8 <_lj_BC_ISNEN+0x64>
490: 41 00 62 1e scvtf d1, w2
494: 00 20 61 1e fcmp d0, d1
498: f2 ff ff 17 b #-56 <_lj_BC_ISNEN+0x30>
49c: 81 03 40 fd ldr d1, [x28]
4a0: 00 00 62 1e scvtf d0, w0
4a4: 00 20 61 1e fcmp d0, d1
4a8: ee ff ff 17 b #-72 <_lj_BC_ISNEN+0x30>
4ac: 0f fc 6f 93 asr x15, x0, #47
4b0: ff 2d 00 b1 cmn x15, #11
4b4: 61 fd ff 54 b.ne #-84 <_lj_BC_ISNEN+0x30>
4b8: 86 08 00 14 b #8728 <_lj_vmeta_equal_cd>
00000000000004bc _lj_BC_ISEQP:
4bc: 68 7a 7b f8 ldr x8, [x19, x27, lsl #3]
4c0: b1 06 40 79 ldrh w17, [x21, #2]
4c4: b5 12 00 91 add x21, x21, #4
4c8: 9c 07 00 91 add x28, x28, #1
4cc: b1 0a 11 8b add x17, x21, x17, lsl #2
4d0: 0f fd 6f 93 asr x15, x8, #47
4d4: ff 2d 00 b1 cmn x15, #11
4d8: c0 0f 01 54 b.eq #8696 <_lj_vmeta_equal_cd>
4dc: 9f 03 0f ab cmn x28, x15
4e0: 31 82 40 d1 sub x17, x17, #32, lsl #12
4e4: 35 02 95 9a csel x21, x17, x21, eq
4e8: b0 46 40 b8 ldr w16, [x21], #4
4ec: c9 0e 30 8b add x9, x22, w16, uxtb #3
4f0: 1b 3e 48 d3 ubfx x27, x16, #8, #8
4f4: 28 b5 47 f9 ldr x8, [x9, #3944]
4f8: 1c 7e 50 d3 ubfx x28, x16, #16, #16
4fc: 00 01 1f d6 br x8
0000000000000500 _lj_BC_ISNEP:
500: 68 7a 7b f8 ldr x8, [x19, x27, lsl #3]
504: b1 06 40 79 ldrh w17, [x21, #2]
508: b5 12 00 91 add x21, x21, #4
50c: 9c 07 00 91 add x28, x28, #1
510: b1 0a 11 8b add x17, x21, x17, lsl #2
514: 0f fd 6f 93 asr x15, x8, #47
518: ff 2d 00 b1 cmn x15, #11
51c: a0 0d 01 54 b.eq #8628 <_lj_vmeta_equal_cd>
520: 9f 03 0f ab cmn x28, x15
524: 31 82 40 d1 sub x17, x17, #32, lsl #12
528: 35 12 95 9a csel x21, x17, x21, ne
52c: b0 46 40 b8 ldr w16, [x21], #4
530: c9 0e 30 8b add x9, x22, w16, uxtb #3
534: 1b 3e 48 d3 ubfx x27, x16, #8, #8
538: 28 b5 47 f9 ldr x8, [x9, #3944]
53c: 1c 7e 50 d3 ubfx x28, x16, #16, #16
540: 00 01 1f d6 br x8
0000000000000544 _lj_BC_ISTC:
544: b1 06 40 79 ldrh w17, [x21, #2]
548: 68 7a 7c f8 ldr x8, [x19, x28, lsl #3]
54c: b5 12 00 91 add x21, x21, #4
550: 09 00 d0 92 mov x9, #-140737488355329
554: b1 0a 11 8b add x17, x21, x17, lsl #2
558: 1f 01 09 eb cmp x8, x9
55c: 31 82 40 d1 sub x17, x17, #32, lsl #12
560: 7b 33 9c 9a csel x27, x27, x28, lo
564: 35 32 95 9a csel x21, x17, x21, lo
568: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
56c: b0 46 40 b8 ldr w16, [x21], #4
570: c9 0e 30 8b add x9, x22, w16, uxtb #3
574: 1b 3e 48 d3 ubfx x27, x16, #8, #8
578: 28 b5 47 f9 ldr x8, [x9, #3944]
57c: 1c 7e 50 d3 ubfx x28, x16, #16, #16
580: 00 01 1f d6 br x8
0000000000000584 _lj_BC_ISFC:
584: b1 06 40 79 ldrh w17, [x21, #2]
588: 68 7a 7c f8 ldr x8, [x19, x28, lsl #3]
58c: b5 12 00 91 add x21, x21, #4
590: 09 00 d0 92 mov x9, #-140737488355329
594: b1 0a 11 8b add x17, x21, x17, lsl #2
598: 1f 01 09 eb cmp x8, x9
59c: 31 82 40 d1 sub x17, x17, #32, lsl #12
5a0: 7b 23 9c 9a csel x27, x27, x28, hs
5a4: 35 22 95 9a csel x21, x17, x21, hs
5a8: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
5ac: b0 46 40 b8 ldr w16, [x21], #4
5b0: c9 0e 30 8b add x9, x22, w16, uxtb #3
5b4: 1b 3e 48 d3 ubfx x27, x16, #8, #8
5b8: 28 b5 47 f9 ldr x8, [x9, #3944]
5bc: 1c 7e 50 d3 ubfx x28, x16, #16, #16
5c0: 00 01 1f d6 br x8
00000000000005c4 _lj_BC_IST:
5c4: b1 06 40 79 ldrh w17, [x21, #2]
5c8: 68 7a 7c f8 ldr x8, [x19, x28, lsl #3]
5cc: b5 12 00 91 add x21, x21, #4
5d0: 09 00 d0 92 mov x9, #-140737488355329
5d4: b1 0a 11 8b add x17, x21, x17, lsl #2
5d8: 1f 01 09 eb cmp x8, x9
5dc: 31 82 40 d1 sub x17, x17, #32, lsl #12
5e0: 35 32 95 9a csel x21, x17, x21, lo
5e4: b0 46 40 b8 ldr w16, [x21], #4
5e8: c9 0e 30 8b add x9, x22, w16, uxtb #3
5ec: 1b 3e 48 d3 ubfx x27, x16, #8, #8
5f0: 28 b5 47 f9 ldr x8, [x9, #3944]
5f4: 1c 7e 50 d3 ubfx x28, x16, #16, #16
5f8: 00 01 1f d6 br x8
00000000000005fc _lj_BC_ISF:
5fc: b1 06 40 79 ldrh w17, [x21, #2]
600: 68 7a 7c f8 ldr x8, [x19, x28, lsl #3]
604: b5 12 00 91 add x21, x21, #4
608: 09 00 d0 92 mov x9, #-140737488355329
60c: b1 0a 11 8b add x17, x21, x17, lsl #2
610: 1f 01 09 eb cmp x8, x9
614: 31 82 40 d1 sub x17, x17, #32, lsl #12
618: 35 22 95 9a csel x21, x17, x21, hs
61c: b0 46 40 b8 ldr w16, [x21], #4
620: c9 0e 30 8b add x9, x22, w16, uxtb #3
624: 1b 3e 48 d3 ubfx x27, x16, #8, #8
628: 28 b5 47 f9 ldr x8, [x9, #3944]
62c: 1c 7e 50 d3 ubfx x28, x16, #16, #16
630: 00 01 1f d6 br x8
0000000000000634 _lj_BC_ISTYPE:
634: 68 7a 7b f8 ldr x8, [x19, x27, lsl #3]
638: 9f bf 88 ab cmn x28, x8, asr #47
63c: 81 05 01 54 b.ne #8368 <_lj_vmeta_istype>
640: b0 46 40 b8 ldr w16, [x21], #4
644: c9 0e 30 8b add x9, x22, w16, uxtb #3
648: 1b 3e 48 d3 ubfx x27, x16, #8, #8
64c: 28 b5 47 f9 ldr x8, [x9, #3944]
650: 1c 7e 50 d3 ubfx x28, x16, #16, #16
654: 00 01 1f d6 br x8
0000000000000658 _lj_BC_ISNUM:
658: 68 6a 7b f8 ldr x8, [x19, x27]
65c: 3f 83 48 eb cmp x25, x8, lsr #32
660: 69 04 01 54 b.ls #8332 <_lj_vmeta_istype>
664: b0 46 40 b8 ldr w16, [x21], #4
668: c9 0e 30 8b add x9, x22, w16, uxtb #3
66c: 1b 3e 48 d3 ubfx x27, x16, #8, #8
670: 28 b5 47 f9 ldr x8, [x9, #3944]
674: 1c 7e 50 d3 ubfx x28, x16, #16, #16
678: 00 01 1f d6 br x8
000000000000067c _lj_BC_MOV:
67c: 68 7a 7c f8 ldr x8, [x19, x28, lsl #3]
680: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
684: b0 46 40 b8 ldr w16, [x21], #4
688: c9 0e 30 8b add x9, x22, w16, uxtb #3
68c: 1b 3e 48 d3 ubfx x27, x16, #8, #8
690: 28 b5 47 f9 ldr x8, [x9, #3944]
694: 1c 7e 50 d3 ubfx x28, x16, #16, #16
698: 00 01 1f d6 br x8
000000000000069c _lj_BC_NOT:
69c: 68 7a 7c f8 ldr x8, [x19, x28, lsl #3]
6a0: 09 00 d0 92 mov x9, #-140737488355329
6a4: 2a 00 e0 92 mov x10, #-281474976710657
6a8: 1f 01 09 eb cmp x8, x9
6ac: 28 31 8a 9a csel x8, x9, x10, lo
6b0: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
6b4: b0 46 40 b8 ldr w16, [x21], #4
6b8: c9 0e 30 8b add x9, x22, w16, uxtb #3
6bc: 1b 3e 48 d3 ubfx x27, x16, #8, #8
6c0: 28 b5 47 f9 ldr x8, [x9, #3944]
6c4: 1c 7e 50 d3 ubfx x28, x16, #16, #16
6c8: 00 01 1f d6 br x8
00000000000006cc _lj_BC_UNM:
6cc: 68 7a 7c f8 ldr x8, [x19, x28, lsl #3]
6d0: 0f fd 6f 93 asr x15, x8, #47
6d4: ff 39 00 b1 cmn x15, #14
6d8: 68 02 01 54 b.hi #8268 <_lj_vmeta_unm>
6dc: 08 01 41 d2 eor x8, x8, #0x8000000000000000
6e0: a1 00 00 54 b.ne #20 <_lj_BC_UNM+0x28>
6e4: e8 03 08 6b negs w8, w8
6e8: 02 3c e8 d2 mov x2, #4746794007248502784
6ec: 08 01 18 8b add x8, x8, x24
6f0: 08 71 82 9a csel x8, x8, x2, vc
6f4: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
6f8: b0 46 40 b8 ldr w16, [x21], #4
6fc: c9 0e 30 8b add x9, x22, w16, uxtb #3
700: 1b 3e 48 d3 ubfx x27, x16, #8, #8
704: 28 b5 47 f9 ldr x8, [x9, #3944]
708: 1c 7e 50 d3 ubfx x28, x16, #16, #16
70c: 00 01 1f d6 br x8
0000000000000710 _lj_BC_LEN:
710: 60 7a 7c f8 ldr x0, [x19, x28, lsl #3]
714: 0f fc 6f 93 asr x15, x0, #47
718: ff 15 00 b1 cmn x15, #5
71c: 00 b8 40 92 and x0, x0, #0x7fffffffffff
720: 41 01 00 54 b.ne #40 <_lj_BC_LEN+0x38>
724: 00 14 40 b9 ldr w0, [x0, #20]
728: 00 00 18 8b add x0, x0, x24
72c: 60 7a 3b f8 str x0, [x19, x27, lsl #3]
730: b0 46 40 b8 ldr w16, [x21], #4
734: c9 0e 30 8b add x9, x22, w16, uxtb #3
738: 1b 3e 48 d3 ubfx x27, x16, #8, #8
73c: 28 b5 47 f9 ldr x8, [x9, #3944]
740: 1c 7e 50 d3 ubfx x28, x16, #16, #16
744: 00 01 1f d6 br x8
748: ff 31 00 b1 cmn x15, #12
74c: 01 01 01 54 b.ne #8224 <_lj_vmeta_len>
750: 00 00 00 94 bl #0 <_lj_BC_LEN+0x40>
754: f5 ff ff 17 b #-44 <_lj_BC_LEN+0x18>
0000000000000758 _lj_BC_ADDVN:
758: 11 7e 58 d3 ubfx x17, x16, #24, #8
75c: 9c 1f 40 92 and x28, x28, #0xff
760: 60 7a 71 f8 ldr x0, [x19, x17, lsl #3]
764: 81 7a 7c f8 ldr x1, [x20, x28, lsl #3]
768: 3f 83 40 eb cmp x25, x0, lsr #32
76c: a1 01 00 54 b.ne #52 <_lj_BC_ADDVN+0x48>
770: 3f 83 41 eb cmp x25, x1, lsr #32
774: 61 01 00 54 b.ne #44 <_lj_BC_ADDVN+0x48>
778: 00 00 01 2b adds w0, w0, w1
77c: 86 fc 00 54 b.vs #8080 <_lj_vmeta_arith_vn>
780: 00 00 18 8b add x0, x0, x24
784: 60 7a 3b f8 str x0, [x19, x27, lsl #3]
788: b0 46 40 b8 ldr w16, [x21], #4
78c: c9 0e 30 8b add x9, x22, w16, uxtb #3
790: 1b 3e 48 d3 ubfx x27, x16, #8, #8
794: 28 b5 47 f9 ldr x8, [x9, #3944]
798: 1c 7e 50 d3 ubfx x28, x16, #16, #16
79c: 00 01 1f d6 br x8
7a0: 60 7a 71 fc ldr d0, [x19, x17, lsl #3]
7a4: 81 7a 7c fc ldr d1, [x20, x28, lsl #3]
7a8: 3f 83 40 eb cmp x25, x0, lsr #32
7ac: 09 fb 00 54 b.ls #8032 <_lj_vmeta_arith_vn>
7b0: 3f 83 41 eb cmp x25, x1, lsr #32
7b4: c9 fa 00 54 b.ls #8024 <_lj_vmeta_arith_vn>
7b8: 00 28 61 1e fadd d0, d0, d1
7bc: 60 7a 3b fc str d0, [x19, x27, lsl #3]
7c0: f2 ff ff 17 b #-56 <_lj_BC_ADDVN+0x30>
00000000000007c4 _lj_BC_SUBVN:
7c4: 11 7e 58 d3 ubfx x17, x16, #24, #8
7c8: 9c 1f 40 92 and x28, x28, #0xff
7cc: 60 7a 71 f8 ldr x0, [x19, x17, lsl #3]
7d0: 81 7a 7c f8 ldr x1, [x20, x28, lsl #3]
7d4: 3f 83 40 eb cmp x25, x0, lsr #32
7d8: a1 01 00 54 b.ne #52 <_lj_BC_SUBVN+0x48>
7dc: 3f 83 41 eb cmp x25, x1, lsr #32
7e0: 61 01 00 54 b.ne #44 <_lj_BC_SUBVN+0x48>
7e4: 00 00 01 6b subs w0, w0, w1
7e8: 26 f9 00 54 b.vs #7972 <_lj_vmeta_arith_vn>
7ec: 00 00 18 8b add x0, x0, x24
7f0: 60 7a 3b f8 str x0, [x19, x27, lsl #3]
7f4: b0 46 40 b8 ldr w16, [x21], #4
7f8: c9 0e 30 8b add x9, x22, w16, uxtb #3
7fc: 1b 3e 48 d3 ubfx x27, x16, #8, #8
800: 28 b5 47 f9 ldr x8, [x9, #3944]
804: 1c 7e 50 d3 ubfx x28, x16, #16, #16
808: 00 01 1f d6 br x8
80c: 60 7a 71 fc ldr d0, [x19, x17, lsl #3]
810: 81 7a 7c fc ldr d1, [x20, x28, lsl #3]
814: 3f 83 40 eb cmp x25, x0, lsr #32
818: a9 f7 00 54 b.ls #7924 <_lj_vmeta_arith_vn>
81c: 3f 83 41 eb cmp x25, x1, lsr #32
820: 69 f7 00 54 b.ls #7916 <_lj_vmeta_arith_vn>
824: 00 38 61 1e fsub d0, d0, d1
828: 60 7a 3b fc str d0, [x19, x27, lsl #3]
82c: f2 ff ff 17 b #-56 <_lj_BC_SUBVN+0x30>
0000000000000830 _lj_BC_MULVN:
830: 11 7e 58 d3 ubfx x17, x16, #24, #8
834: 9c 1f 40 92 and x28, x28, #0xff
838: 60 7a 71 f8 ldr x0, [x19, x17, lsl #3]
83c: 81 7a 7c f8 ldr x1, [x20, x28, lsl #3]
840: 3f 83 40 eb cmp x25, x0, lsr #32
844: e1 01 00 54 b.ne #60 <_lj_BC_MULVN+0x50>
848: 3f 83 41 eb cmp x25, x1, lsr #32
84c: a1 01 00 54 b.ne #52 <_lj_BC_MULVN+0x50>
850: 00 7c 21 9b smull x0, w0, w1
854: 1f c0 20 eb cmp x0, w0, sxtw
858: e0 03 00 2a mov w0, w0
85c: 81 f5 00 54 b.ne #7856 <_lj_vmeta_arith_vn>
860: 00 00 18 8b add x0, x0, x24
864: 60 7a 3b f8 str x0, [x19, x27, lsl #3]
868: b0 46 40 b8 ldr w16, [x21], #4
86c: c9 0e 30 8b add x9, x22, w16, uxtb #3
870: 1b 3e 48 d3 ubfx x27, x16, #8, #8
874: 28 b5 47 f9 ldr x8, [x9, #3944]
878: 1c 7e 50 d3 ubfx x28, x16, #16, #16
87c: 00 01 1f d6 br x8
880: 60 7a 71 fc ldr d0, [x19, x17, lsl #3]
884: 81 7a 7c fc ldr d1, [x20, x28, lsl #3]
888: 3f 83 40 eb cmp x25, x0, lsr #32
88c: 09 f4 00 54 b.ls #7808 <_lj_vmeta_arith_vn>
890: 3f 83 41 eb cmp x25, x1, lsr #32
894: c9 f3 00 54 b.ls #7800 <_lj_vmeta_arith_vn>
898: 00 08 61 1e fmul d0, d0, d1
89c: 60 7a 3b fc str d0, [x19, x27, lsl #3]
8a0: f2 ff ff 17 b #-56 <_lj_BC_MULVN+0x38>
00000000000008a4 _lj_BC_DIVVN:
8a4: 11 7e 58 d3 ubfx x17, x16, #24, #8
8a8: 9c 1f 40 92 and x28, x28, #0xff
8ac: 60 7a 71 f8 ldr x0, [x19, x17, lsl #3]
8b0: 81 7a 7c f8 ldr x1, [x20, x28, lsl #3]
8b4: 60 7a 71 fc ldr d0, [x19, x17, lsl #3]
8b8: 81 7a 7c fc ldr d1, [x20, x28, lsl #3]
8bc: 3f 83 40 eb cmp x25, x0, lsr #32
8c0: 69 f2 00 54 b.ls #7756 <_lj_vmeta_arith_vn>
8c4: 3f 83 41 eb cmp x25, x1, lsr #32
8c8: 29 f2 00 54 b.ls #7748 <_lj_vmeta_arith_vn>
8cc: 00 18 61 1e fdiv d0, d0, d1
8d0: 60 7a 3b fc str d0, [x19, x27, lsl #3]
8d4: b0 46 40 b8 ldr w16, [x21], #4
8d8: c9 0e 30 8b add x9, x22, w16, uxtb #3
8dc: 1b 3e 48 d3 ubfx x27, x16, #8, #8
8e0: 28 b5 47 f9 ldr x8, [x9, #3944]
8e4: 1c 7e 50 d3 ubfx x28, x16, #16, #16
8e8: 00 01 1f d6 br x8
00000000000008ec _lj_BC_MODVN:
8ec: 11 7e 58 d3 ubfx x17, x16, #24, #8
8f0: 9c 1f 40 92 and x28, x28, #0xff
8f4: 60 7a 71 f8 ldr x0, [x19, x17, lsl #3]
8f8: 81 7a 7c f8 ldr x1, [x20, x28, lsl #3]
8fc: 3f 83 40 eb cmp x25, x0, lsr #32
900: a1 01 00 54 b.ne #52 <_lj_BC_MODVN+0x48>
904: 3f 83 41 eb cmp x25, x1, lsr #32
908: 61 01 00 54 b.ne #44 <_lj_BC_MODVN+0x48>
90c: 01 f0 00 34 cbz w1, #7680 <_lj_vmeta_arith_vn>
910: a6 0c 00 94 bl #12952 <_lj_vm_modi>
914: 00 00 18 8b add x0, x0, x24
918: 60 7a 3b f8 str x0, [x19, x27, lsl #3]
91c: b0 46 40 b8 ldr w16, [x21], #4
920: c9 0e 30 8b add x9, x22, w16, uxtb #3
924: 1b 3e 48 d3 ubfx x27, x16, #8, #8
928: 28 b5 47 f9 ldr x8, [x9, #3944]
92c: 1c 7e 50 d3 ubfx x28, x16, #16, #16
930: 00 01 1f d6 br x8
934: 60 7a 71 fc ldr d0, [x19, x17, lsl #3]
938: 81 7a 7c fc ldr d1, [x20, x28, lsl #3]
93c: 3f 83 40 eb cmp x25, x0, lsr #32
940: 69 ee 00 54 b.ls #7628 <_lj_vmeta_arith_vn>
944: 3f 83 41 eb cmp x25, x1, lsr #32
948: 29 ee 00 54 b.ls #7620 <_lj_vmeta_arith_vn>
94c: 02 18 61 1e fdiv d2, d0, d1
950: 42 40 65 1e frintm d2, d2
954: 40 80 41 1f fmsub d0, d2, d1, d0
958: 60 7a 3b fc str d0, [x19, x27, lsl #3]
95c: f0 ff ff 17 b #-64 <_lj_BC_MODVN+0x30>
0000000000000960 _lj_BC_ADDNV:
960: 9c 1f 40 92 and x28, x28, #0xff
964: 11 7e 58 d3 ubfx x17, x16, #24, #8
968: 80 7a 7c f8 ldr x0, [x20, x28, lsl #3]
96c: 61 7a 71 f8 ldr x1, [x19, x17, lsl #3]
970: 3f 83 40 eb cmp x25, x0, lsr #32
974: a1 01 00 54 b.ne #52 <_lj_BC_ADDNV+0x48>
978: 3f 83 41 eb cmp x25, x1, lsr #32
97c: 61 01 00 54 b.ne #44 <_lj_BC_ADDNV+0x48>
980: 00 00 01 2b adds w0, w0, w1
984: a6 ec 00 54 b.vs #7572 <_lj_vmeta_arith_nv>
988: 00 00 18 8b add x0, x0, x24
98c: 60 7a 3b f8 str x0, [x19, x27, lsl #3]
990: b0 46 40 b8 ldr w16, [x21], #4
994: c9 0e 30 8b add x9, x22, w16, uxtb #3
998: 1b 3e 48 d3 ubfx x27, x16, #8, #8
99c: 28 b5 47 f9 ldr x8, [x9, #3944]
9a0: 1c 7e 50 d3 ubfx x28, x16, #16, #16
9a4: 00 01 1f d6 br x8
9a8: 80 7a 7c fc ldr d0, [x20, x28, lsl #3]
9ac: 61 7a 71 fc ldr d1, [x19, x17, lsl #3]
9b0: 3f 83 40 eb cmp x25, x0, lsr #32
9b4: 29 eb 00 54 b.ls #7524 <_lj_vmeta_arith_nv>
9b8: 3f 83 41 eb cmp x25, x1, lsr #32
9bc: e9 ea 00 54 b.ls #7516 <_lj_vmeta_arith_nv>
9c0: 00 28 61 1e fadd d0, d0, d1
9c4: 60 7a 3b fc str d0, [x19, x27, lsl #3]
9c8: f2 ff ff 17 b #-56 <_lj_BC_ADDNV+0x30>
00000000000009cc _lj_BC_SUBNV:
9cc: 9c 1f 40 92 and x28, x28, #0xff
9d0: 11 7e 58 d3 ubfx x17, x16, #24, #8
9d4: 80 7a 7c f8 ldr x0, [x20, x28, lsl #3]
9d8: 61 7a 71 f8 ldr x1, [x19, x17, lsl #3]
9dc: 3f 83 40 eb cmp x25, x0, lsr #32
9e0: a1 01 00 54 b.ne #52 <_lj_BC_SUBNV+0x48>
9e4: 3f 83 41 eb cmp x25, x1, lsr #32
9e8: 61 01 00 54 b.ne #44 <_lj_BC_SUBNV+0x48>
9ec: 00 00 01 6b subs w0, w0, w1
9f0: 46 e9 00 54 b.vs #7464 <_lj_vmeta_arith_nv>
9f4: 00 00 18 8b add x0, x0, x24
9f8: 60 7a 3b f8 str x0, [x19, x27, lsl #3]
9fc: b0 46 40 b8 ldr w16, [x21], #4
a00: c9 0e 30 8b add x9, x22, w16, uxtb #3
a04: 1b 3e 48 d3 ubfx x27, x16, #8, #8
a08: 28 b5 47 f9 ldr x8, [x9, #3944]
a0c: 1c 7e 50 d3 ubfx x28, x16, #16, #16
a10: 00 01 1f d6 br x8
a14: 80 7a 7c fc ldr d0, [x20, x28, lsl #3]
a18: 61 7a 71 fc ldr d1, [x19, x17, lsl #3]
a1c: 3f 83 40 eb cmp x25, x0, lsr #32
a20: c9 e7 00 54 b.ls #7416 <_lj_vmeta_arith_nv>
a24: 3f 83 41 eb cmp x25, x1, lsr #32
a28: 89 e7 00 54 b.ls #7408 <_lj_vmeta_arith_nv>
a2c: 00 38 61 1e fsub d0, d0, d1
a30: 60 7a 3b fc str d0, [x19, x27, lsl #3]
a34: f2 ff ff 17 b #-56 <_lj_BC_SUBNV+0x30>
0000000000000a38 _lj_BC_MULNV:
a38: 9c 1f 40 92 and x28, x28, #0xff
a3c: 11 7e 58 d3 ubfx x17, x16, #24, #8
a40: 80 7a 7c f8 ldr x0, [x20, x28, lsl #3]
a44: 61 7a 71 f8 ldr x1, [x19, x17, lsl #3]
a48: 3f 83 40 eb cmp x25, x0, lsr #32
a4c: e1 01 00 54 b.ne #60 <_lj_BC_MULNV+0x50>
a50: 3f 83 41 eb cmp x25, x1, lsr #32
a54: a1 01 00 54 b.ne #52 <_lj_BC_MULNV+0x50>
a58: 00 7c 21 9b smull x0, w0, w1
a5c: 1f c0 20 eb cmp x0, w0, sxtw
a60: e0 03 00 2a mov w0, w0
a64: a1 e5 00 54 b.ne #7348 <_lj_vmeta_arith_nv>
a68: 00 00 18 8b add x0, x0, x24
a6c: 60 7a 3b f8 str x0, [x19, x27, lsl #3]
a70: b0 46 40 b8 ldr w16, [x21], #4
a74: c9 0e 30 8b add x9, x22, w16, uxtb #3
a78: 1b 3e 48 d3 ubfx x27, x16, #8, #8
a7c: 28 b5 47 f9 ldr x8, [x9, #3944]
a80: 1c 7e 50 d3 ubfx x28, x16, #16, #16
a84: 00 01 1f d6 br x8
a88: 80 7a 7c fc ldr d0, [x20, x28, lsl #3]
a8c: 61 7a 71 fc ldr d1, [x19, x17, lsl #3]
a90: 3f 83 40 eb cmp x25, x0, lsr #32
a94: 29 e4 00 54 b.ls #7300 <_lj_vmeta_arith_nv>
a98: 3f 83 41 eb cmp x25, x1, lsr #32
a9c: e9 e3 00 54 b.ls #7292 <_lj_vmeta_arith_nv>
aa0: 00 08 61 1e fmul d0, d0, d1
aa4: 60 7a 3b fc str d0, [x19, x27, lsl #3]
aa8: f2 ff ff 17 b #-56 <_lj_BC_MULNV+0x38>
0000000000000aac _lj_BC_DIVNV:
aac: 9c 1f 40 92 and x28, x28, #0xff
ab0: 11 7e 58 d3 ubfx x17, x16, #24, #8
ab4: 80 7a 7c f8 ldr x0, [x20, x28, lsl #3]
ab8: 61 7a 71 f8 ldr x1, [x19, x17, lsl #3]
abc: 80 7a 7c fc ldr d0, [x20, x28, lsl #3]
ac0: 61 7a 71 fc ldr d1, [x19, x17, lsl #3]
ac4: 3f 83 40 eb cmp x25, x0, lsr #32
ac8: 89 e2 00 54 b.ls #7248 <_lj_vmeta_arith_nv>
acc: 3f 83 41 eb cmp x25, x1, lsr #32
ad0: 49 e2 00 54 b.ls #7240 <_lj_vmeta_arith_nv>
ad4: 00 18 61 1e fdiv d0, d0, d1
ad8: 60 7a 3b fc str d0, [x19, x27, lsl #3]
adc: b0 46 40 b8 ldr w16, [x21], #4
ae0: c9 0e 30 8b add x9, x22, w16, uxtb #3
ae4: 1b 3e 48 d3 ubfx x27, x16, #8, #8
ae8: 28 b5 47 f9 ldr x8, [x9, #3944]
aec: 1c 7e 50 d3 ubfx x28, x16, #16, #16
af0: 00 01 1f d6 br x8
0000000000000af4 _lj_BC_MODNV:
af4: 9c 1f 40 92 and x28, x28, #0xff
af8: 11 7e 58 d3 ubfx x17, x16, #24, #8
afc: 80 7a 7c f8 ldr x0, [x20, x28, lsl #3]
b00: 61 7a 71 f8 ldr x1, [x19, x17, lsl #3]
b04: 3f 83 40 eb cmp x25, x0, lsr #32
b08: a1 01 00 54 b.ne #52 <_lj_BC_MODNV+0x48>
b0c: 3f 83 41 eb cmp x25, x1, lsr #32
b10: 61 01 00 54 b.ne #44 <_lj_BC_MODNV+0x48>
b14: 21 e0 00 34 cbz w1, #7172 <_lj_vmeta_arith_nv>
b18: 24 0c 00 94 bl #12432 <_lj_vm_modi>
b1c: 00 00 18 8b add x0, x0, x24
b20: 60 7a 3b f8 str x0, [x19, x27, lsl #3]
b24: b0 46 40 b8 ldr w16, [x21], #4
b28: c9 0e 30 8b add x9, x22, w16, uxtb #3
b2c: 1b 3e 48 d3 ubfx x27, x16, #8, #8
b30: 28 b5 47 f9 ldr x8, [x9, #3944]
b34: 1c 7e 50 d3 ubfx x28, x16, #16, #16
b38: 00 01 1f d6 br x8
b3c: 80 7a 7c fc ldr d0, [x20, x28, lsl #3]
b40: 61 7a 71 fc ldr d1, [x19, x17, lsl #3]
b44: 3f 83 40 eb cmp x25, x0, lsr #32
b48: 89 de 00 54 b.ls #7120 <_lj_vmeta_arith_nv>
b4c: 3f 83 41 eb cmp x25, x1, lsr #32
b50: 49 de 00 54 b.ls #7112 <_lj_vmeta_arith_nv>
b54: 02 18 61 1e fdiv d2, d0, d1
b58: 42 40 65 1e frintm d2, d2
b5c: 40 80 41 1f fmsub d0, d2, d1, d0
b60: 60 7a 3b fc str d0, [x19, x27, lsl #3]
b64: f0 ff ff 17 b #-64 <_lj_BC_MODNV+0x30>
0000000000000b68 _lj_BC_ADDVV:
b68: 11 7e 58 d3 ubfx x17, x16, #24, #8
b6c: 9c 1f 40 92 and x28, x28, #0xff
b70: 60 7a 71 f8 ldr x0, [x19, x17, lsl #3]
b74: 61 7a 7c f8 ldr x1, [x19, x28, lsl #3]
b78: 3f 83 40 eb cmp x25, x0, lsr #32
b7c: a1 01 00 54 b.ne #52 <_lj_BC_ADDVV+0x48>
b80: 3f 83 41 eb cmp x25, x1, lsr #32
b84: 61 01 00 54 b.ne #44 <_lj_BC_ADDVV+0x48>
b88: 00 00 01 2b adds w0, w0, w1
b8c: 26 dd 00 54 b.vs #7076 <_lj_vmeta_arith_vv>
b90: 00 00 18 8b add x0, x0, x24
b94: 60 7a 3b f8 str x0, [x19, x27, lsl #3]
b98: b0 46 40 b8 ldr w16, [x21], #4
b9c: c9 0e 30 8b add x9, x22, w16, uxtb #3
ba0: 1b 3e 48 d3 ubfx x27, x16, #8, #8
ba4: 28 b5 47 f9 ldr x8, [x9, #3944]
ba8: 1c 7e 50 d3 ubfx x28, x16, #16, #16
bac: 00 01 1f d6 br x8
bb0: 60 7a 71 fc ldr d0, [x19, x17, lsl #3]
bb4: 61 7a 7c fc ldr d1, [x19, x28, lsl #3]
bb8: 3f 83 40 eb cmp x25, x0, lsr #32
bbc: a9 db 00 54 b.ls #7028 <_lj_vmeta_arith_vv>
bc0: 3f 83 41 eb cmp x25, x1, lsr #32
bc4: 69 db 00 54 b.ls #7020 <_lj_vmeta_arith_vv>
bc8: 00 28 61 1e fadd d0, d0, d1
bcc: 60 7a 3b fc str d0, [x19, x27, lsl #3]
bd0: f2 ff ff 17 b #-56 <_lj_BC_ADDVV+0x30>
0000000000000bd4 _lj_BC_SUBVV:
bd4: 11 7e 58 d3 ubfx x17, x16, #24, #8
bd8: 9c 1f 40 92 and x28, x28, #0xff
bdc: 60 7a 71 f8 ldr x0, [x19, x17, lsl #3]
be0: 61 7a 7c f8 ldr x1, [x19, x28, lsl #3]
be4: 3f 83 40 eb cmp x25, x0, lsr #32
be8: a1 01 00 54 b.ne #52 <_lj_BC_SUBVV+0x48>
bec: 3f 83 41 eb cmp x25, x1, lsr #32
bf0: 61 01 00 54 b.ne #44 <_lj_BC_SUBVV+0x48>
bf4: 00 00 01 6b subs w0, w0, w1
bf8: c6 d9 00 54 b.vs #6968 <_lj_vmeta_arith_vv>
bfc: 00 00 18 8b add x0, x0, x24
c00: 60 7a 3b f8 str x0, [x19, x27, lsl #3]
c04: b0 46 40 b8 ldr w16, [x21], #4
c08: c9 0e 30 8b add x9, x22, w16, uxtb #3
c0c: 1b 3e 48 d3 ubfx x27, x16, #8, #8
c10: 28 b5 47 f9 ldr x8, [x9, #3944]
c14: 1c 7e 50 d3 ubfx x28, x16, #16, #16
c18: 00 01 1f d6 br x8
c1c: 60 7a 71 fc ldr d0, [x19, x17, lsl #3]
c20: 61 7a 7c fc ldr d1, [x19, x28, lsl #3]
c24: 3f 83 40 eb cmp x25, x0, lsr #32
c28: 49 d8 00 54 b.ls #6920 <_lj_vmeta_arith_vv>
c2c: 3f 83 41 eb cmp x25, x1, lsr #32
c30: 09 d8 00 54 b.ls #6912 <_lj_vmeta_arith_vv>
c34: 00 38 61 1e fsub d0, d0, d1
c38: 60 7a 3b fc str d0, [x19, x27, lsl #3]
c3c: f2 ff ff 17 b #-56 <_lj_BC_SUBVV+0x30>
0000000000000c40 _lj_BC_MULVV:
c40: 11 7e 58 d3 ubfx x17, x16, #24, #8
c44: 9c 1f 40 92 and x28, x28, #0xff
c48: 60 7a 71 f8 ldr x0, [x19, x17, lsl #3]
c4c: 61 7a 7c f8 ldr x1, [x19, x28, lsl #3]
c50: 3f 83 40 eb cmp x25, x0, lsr #32
c54: e1 01 00 54 b.ne #60 <_lj_BC_MULVV+0x50>
c58: 3f 83 41 eb cmp x25, x1, lsr #32
c5c: a1 01 00 54 b.ne #52 <_lj_BC_MULVV+0x50>
c60: 00 7c 21 9b smull x0, w0, w1
c64: 1f c0 20 eb cmp x0, w0, sxtw
c68: e0 03 00 2a mov w0, w0
c6c: 21 d6 00 54 b.ne #6852 <_lj_vmeta_arith_vv>
c70: 00 00 18 8b add x0, x0, x24
c74: 60 7a 3b f8 str x0, [x19, x27, lsl #3]
c78: b0 46 40 b8 ldr w16, [x21], #4
c7c: c9 0e 30 8b add x9, x22, w16, uxtb #3
c80: 1b 3e 48 d3 ubfx x27, x16, #8, #8
c84: 28 b5 47 f9 ldr x8, [x9, #3944]
c88: 1c 7e 50 d3 ubfx x28, x16, #16, #16
c8c: 00 01 1f d6 br x8
c90: 60 7a 71 fc ldr d0, [x19, x17, lsl #3]
c94: 61 7a 7c fc ldr d1, [x19, x28, lsl #3]
c98: 3f 83 40 eb cmp x25, x0, lsr #32
c9c: a9 d4 00 54 b.ls #6804 <_lj_vmeta_arith_vv>
ca0: 3f 83 41 eb cmp x25, x1, lsr #32
ca4: 69 d4 00 54 b.ls #6796 <_lj_vmeta_arith_vv>
ca8: 00 08 61 1e fmul d0, d0, d1
cac: 60 7a 3b fc str d0, [x19, x27, lsl #3]
cb0: f2 ff ff 17 b #-56 <_lj_BC_MULVV+0x38>
0000000000000cb4 _lj_BC_DIVVV:
cb4: 11 7e 58 d3 ubfx x17, x16, #24, #8
cb8: 9c 1f 40 92 and x28, x28, #0xff
cbc: 60 7a 71 f8 ldr x0, [x19, x17, lsl #3]
cc0: 61 7a 7c f8 ldr x1, [x19, x28, lsl #3]
cc4: 60 7a 71 fc ldr d0, [x19, x17, lsl #3]
cc8: 61 7a 7c fc ldr d1, [x19, x28, lsl #3]
ccc: 3f 83 40 eb cmp x25, x0, lsr #32
cd0: 09 d3 00 54 b.ls #6752 <_lj_vmeta_arith_vv>
cd4: 3f 83 41 eb cmp x25, x1, lsr #32
cd8: c9 d2 00 54 b.ls #6744 <_lj_vmeta_arith_vv>
cdc: 00 18 61 1e fdiv d0, d0, d1
ce0: 60 7a 3b fc str d0, [x19, x27, lsl #3]
ce4: b0 46 40 b8 ldr w16, [x21], #4
ce8: c9 0e 30 8b add x9, x22, w16, uxtb #3
cec: 1b 3e 48 d3 ubfx x27, x16, #8, #8
cf0: 28 b5 47 f9 ldr x8, [x9, #3944]
cf4: 1c 7e 50 d3 ubfx x28, x16, #16, #16
cf8: 00 01 1f d6 br x8
0000000000000cfc _lj_BC_MODVV:
cfc: 11 7e 58 d3 ubfx x17, x16, #24, #8
d00: 9c 1f 40 92 and x28, x28, #0xff
d04: 60 7a 71 f8 ldr x0, [x19, x17, lsl #3]
d08: 61 7a 7c f8 ldr x1, [x19, x28, lsl #3]
d0c: 3f 83 40 eb cmp x25, x0, lsr #32
d10: a1 01 00 54 b.ne #52 <_lj_BC_MODVV+0x48>
d14: 3f 83 41 eb cmp x25, x1, lsr #32
d18: 61 01 00 54 b.ne #44 <_lj_BC_MODVV+0x48>
d1c: a1 d0 00 34 cbz w1, #6676 <_lj_vmeta_arith_vv>
d20: a2 0b 00 94 bl #11912 <_lj_vm_modi>
d24: 00 00 18 8b add x0, x0, x24
d28: 60 7a 3b f8 str x0, [x19, x27, lsl #3]
d2c: b0 46 40 b8 ldr w16, [x21], #4
d30: c9 0e 30 8b add x9, x22, w16, uxtb #3
d34: 1b 3e 48 d3 ubfx x27, x16, #8, #8
d38: 28 b5 47 f9 ldr x8, [x9, #3944]
d3c: 1c 7e 50 d3 ubfx x28, x16, #16, #16
d40: 00 01 1f d6 br x8
d44: 60 7a 71 fc ldr d0, [x19, x17, lsl #3]
d48: 61 7a 7c fc ldr d1, [x19, x28, lsl #3]
d4c: 3f 83 40 eb cmp x25, x0, lsr #32
d50: 09 cf 00 54 b.ls #6624 <_lj_vmeta_arith_vv>
d54: 3f 83 41 eb cmp x25, x1, lsr #32
d58: c9 ce 00 54 b.ls #6616 <_lj_vmeta_arith_vv>
d5c: 02 18 61 1e fdiv d2, d0, d1
d60: 42 40 65 1e frintm d2, d2
d64: 40 80 41 1f fmsub d0, d2, d1, d0
d68: 60 7a 3b fc str d0, [x19, x27, lsl #3]
d6c: f0 ff ff 17 b #-64 <_lj_BC_MODVV+0x30>
0000000000000d70 _lj_BC_POW:
d70: 11 7e 58 d3 ubfx x17, x16, #24, #8
d74: 9c 1f 40 92 and x28, x28, #0xff
d78: 60 7a 71 f8 ldr x0, [x19, x17, lsl #3]
d7c: 61 7a 7c f8 ldr x1, [x19, x28, lsl #3]
d80: 60 7a 71 fc ldr d0, [x19, x17, lsl #3]
d84: 61 7a 7c fc ldr d1, [x19, x28, lsl #3]
d88: 3f 83 40 eb cmp x25, x0, lsr #32
d8c: 29 cd 00 54 b.ls #6564 <_lj_vmeta_arith_vv>
d90: 3f 83 41 eb cmp x25, x1, lsr #32
d94: e9 cc 00 54 b.ls #6556 <_lj_vmeta_arith_vv>
d98: 00 00 00 94 bl #0 <_lj_BC_POW+0x28>
d9c: 60 7a 3b fc str d0, [x19, x27, lsl #3]
da0: b0 46 40 b8 ldr w16, [x21], #4
da4: c9 0e 30 8b add x9, x22, w16, uxtb #3
da8: 1b 3e 48 d3 ubfx x27, x16, #8, #8
dac: 28 b5 47 f9 ldr x8, [x9, #3944]
db0: 1c 7e 50 d3 ubfx x28, x16, #16, #16
db4: 00 01 1f d6 br x8
0000000000000db8 _lj_BC_CAT:
db8: 11 7e 58 d3 ubfx x17, x16, #24, #8
dbc: 9c 1f 40 92 and x28, x28, #0xff
dc0: f3 12 00 f9 str x19, [x23, #32]
dc4: 82 03 11 cb sub x2, x28, x17
dc8: 61 0e 1c 8b add x1, x19, x28, lsl #3
dcc: e0 03 17 aa mov x0, x23
dd0: f5 07 00 f9 str x21, [sp, #8]
dd4: 00 00 00 94 bl #0 <_lj_BC_CAT+0x1c>
dd8: b1 f2 5f 38 ldurb w17, [x21, #-1]
ddc: f3 12 40 f9 ldr x19, [x23, #32]
de0: a0 cb 00 b5 cbnz x0, #6516 <_lj_vmeta_binop>
de4: 68 7a 71 f8 ldr x8, [x19, x17, lsl #3]
de8: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
dec: b0 46 40 b8 ldr w16, [x21], #4
df0: c9 0e 30 8b add x9, x22, w16, uxtb #3
df4: 1b 3e 48 d3 ubfx x27, x16, #8, #8
df8: 28 b5 47 f9 ldr x8, [x9, #3944]
dfc: 1c 7e 50 d3 ubfx x28, x16, #16, #16
e00: 00 01 1f d6 br x8
0000000000000e04 _lj_BC_KSTR:
e04: fc 03 3c aa mvn x28, x28
e08: 88 7a 7c f8 ldr x8, [x20, x28, lsl #3]
e0c: 89 00 80 92 mov x9, #-5
e10: 08 bd 09 8b add x8, x8, x9, lsl #47
e14: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
e18: b0 46 40 b8 ldr w16, [x21], #4
e1c: c9 0e 30 8b add x9, x22, w16, uxtb #3
e20: 1b 3e 48 d3 ubfx x27, x16, #8, #8
e24: 28 b5 47 f9 ldr x8, [x9, #3944]
e28: 1c 7e 50 d3 ubfx x28, x16, #16, #16
e2c: 00 01 1f d6 br x8
0000000000000e30 _lj_BC_KCDATA:
e30: fc 03 3c aa mvn x28, x28
e34: 88 7a 7c f8 ldr x8, [x20, x28, lsl #3]
e38: 49 01 80 92 mov x9, #-11
e3c: 08 bd 09 8b add x8, x8, x9, lsl #47
e40: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
e44: b0 46 40 b8 ldr w16, [x21], #4
e48: c9 0e 30 8b add x9, x22, w16, uxtb #3
e4c: 1b 3e 48 d3 ubfx x27, x16, #8, #8
e50: 28 b5 47 f9 ldr x8, [x9, #3944]
e54: 1c 7e 50 d3 ubfx x28, x16, #16, #16
e58: 00 01 1f d6 br x8
0000000000000e5c _lj_BC_KSHORT:
e5c: 9c 3f 00 13 sxth w28, w28
e60: 88 03 18 8b add x8, x28, x24
e64: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
e68: b0 46 40 b8 ldr w16, [x21], #4
e6c: c9 0e 30 8b add x9, x22, w16, uxtb #3
e70: 1b 3e 48 d3 ubfx x27, x16, #8, #8
e74: 28 b5 47 f9 ldr x8, [x9, #3944]
e78: 1c 7e 50 d3 ubfx x28, x16, #16, #16
e7c: 00 01 1f d6 br x8
0000000000000e80 _lj_BC_KNUM:
e80: 88 7a 7c f8 ldr x8, [x20, x28, lsl #3]
e84: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
e88: b0 46 40 b8 ldr w16, [x21], #4
e8c: c9 0e 30 8b add x9, x22, w16, uxtb #3
e90: 1b 3e 48 d3 ubfx x27, x16, #8, #8
e94: 28 b5 47 f9 ldr x8, [x9, #3944]
e98: 1c 7e 50 d3 ubfx x28, x16, #16, #16
e9c: 00 01 1f d6 br x8
0000000000000ea0 _lj_BC_KPRI:
ea0: e8 bf 3c aa mvn x8, x28, lsl #47
ea4: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
ea8: b0 46 40 b8 ldr w16, [x21], #4
eac: c9 0e 30 8b add x9, x22, w16, uxtb #3
eb0: 1b 3e 48 d3 ubfx x27, x16, #8, #8
eb4: 28 b5 47 f9 ldr x8, [x9, #3944]
eb8: 1c 7e 50 d3 ubfx x28, x16, #16, #16
ebc: 00 01 1f d6 br x8
0000000000000ec0 _lj_BC_KNIL:
ec0: 7b 0e 1b 8b add x27, x19, x27, lsl #3
ec4: 7c 0e 1c 8b add x28, x19, x28, lsl #3
ec8: 7a 87 00 f8 str x26, [x27], #8
ecc: 7f 03 1c eb cmp x27, x28
ed0: 7a 87 00 f8 str x26, [x27], #8
ed4: cb ff ff 54 b.lt #-8 <_lj_BC_KNIL+0xc>
ed8: b0 46 40 b8 ldr w16, [x21], #4
edc: c9 0e 30 8b add x9, x22, w16, uxtb #3
ee0: 1b 3e 48 d3 ubfx x27, x16, #8, #8
ee4: 28 b5 47 f9 ldr x8, [x9, #3944]
ee8: 1c 7e 50 d3 ubfx x28, x16, #16, #16
eec: 00 01 1f d6 br x8
0000000000000ef0 _lj_BC_UGET:
ef0: 61 02 5f f8 ldur x1, [x19, #-16]
ef4: 9c 17 00 91 add x28, x28, #5
ef8: 21 b8 40 92 and x1, x1, #0x7fffffffffff
efc: 21 78 7c f8 ldr x1, [x1, x28, lsl #3]
f00: 21 10 40 f9 ldr x1, [x1, #32]
f04: 28 00 40 f9 ldr x8, [x1]
f08: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
f0c: b0 46 40 b8 ldr w16, [x21], #4
f10: c9 0e 30 8b add x9, x22, w16, uxtb #3
f14: 1b 3e 48 d3 ubfx x27, x16, #8, #8
f18: 28 b5 47 f9 ldr x8, [x9, #3944]
f1c: 1c 7e 50 d3 ubfx x28, x16, #16, #16
f20: 00 01 1f d6 br x8
0000000000000f24 _lj_BC_USETV:
f24: 61 02 5f f8 ldur x1, [x19, #-16]
f28: 7b 17 00 91 add x27, x27, #5
f2c: 21 b8 40 92 and x1, x1, #0x7fffffffffff
f30: 20 78 7b f8 ldr x0, [x1, x27, lsl #3]
f34: 62 7a 7c f8 ldr x2, [x19, x28, lsl #3]
f38: 01 10 40 f9 ldr x1, [x0, #32]
f3c: 0a 20 40 39 ldrb w10, [x0, #8]
f40: 08 28 40 39 ldrb w8, [x0, #10]
f44: 4f fc 6f 93 asr x15, x2, #47
f48: 22 00 00 f9 str x2, [x1]
f4c: ef 11 00 91 add x15, x15, #4
f50: 5f 01 1e 72 tst w10, #0x4
f54: 04 19 40 7a ccmp w8, #0, #4, ne
f58: e0 19 4a ba ccmn x15, #10, #0, ne
f5c: e8 00 00 54 b.hi #28 <_lj_BC_USETV+0x54>
f60: b0 46 40 b8 ldr w16, [x21], #4
f64: c9 0e 30 8b add x9, x22, w16, uxtb #3
f68: 1b 3e 48 d3 ubfx x27, x16, #8, #8
f6c: 28 b5 47 f9 ldr x8, [x9, #3944]
f70: 1c 7e 50 d3 ubfx x28, x16, #16, #16
f74: 00 01 1f d6 br x8
f78: 42 b8 40 92 and x2, x2, #0x7fffffffffff
f7c: 49 20 40 39 ldrb w9, [x2, #8]
f80: 3f 05 00 72 tst w9, #0x3
f84: e0 fe ff 54 b.eq #-36 <_lj_BC_USETV+0x3c>
f88: e0 03 16 aa mov x0, x22
f8c: 00 00 00 94 bl #0 <_lj_BC_USETV+0x68>
f90: f4 ff ff 17 b #-48 <_lj_BC_USETV+0x3c>
0000000000000f94 _lj_BC_USETS:
f94: 61 02 5f f8 ldur x1, [x19, #-16]
f98: 7b 17 00 91 add x27, x27, #5
f9c: fc 03 3c aa mvn x28, x28
fa0: 21 b8 40 92 and x1, x1, #0x7fffffffffff
fa4: 20 78 7b f8 ldr x0, [x1, x27, lsl #3]
fa8: 82 7a 7c f8 ldr x2, [x20, x28, lsl #3]
fac: 88 00 80 92 mov x8, #-5
fb0: 01 10 40 f9 ldr x1, [x0, #32]
fb4: 0a 20 40 39 ldrb w10, [x0, #8]
fb8: 48 bc 08 8b add x8, x2, x8, lsl #47
fbc: 49 20 40 39 ldrb w9, [x2, #8]
fc0: 28 00 00 f9 str x8, [x1]
fc4: ea 00 10 37 tbnz w10, #2, #28 <_lj_BC_USETS+0x4c>
fc8: b0 46 40 b8 ldr w16, [x21], #4
fcc: c9 0e 30 8b add x9, x22, w16, uxtb #3
fd0: 1b 3e 48 d3 ubfx x27, x16, #8, #8
fd4: 28 b5 47 f9 ldr x8, [x9, #3944]
fd8: 1c 7e 50 d3 ubfx x28, x16, #16, #16
fdc: 00 01 1f d6 br x8
fe0: 08 28 40 39 ldrb w8, [x0, #10]
fe4: 3f 05 00 72 tst w9, #0x3
fe8: 04 19 40 7a ccmp w8, #0, #4, ne
fec: e0 fe ff 54 b.eq #-36 <_lj_BC_USETS+0x34>
ff0: e0 03 16 aa mov x0, x22
ff4: 00 00 00 94 bl #0 <_lj_BC_USETS+0x60>
ff8: f4 ff ff 17 b #-48 <_lj_BC_USETS+0x34>
0000000000000ffc _lj_BC_USETN:
ffc: 61 02 5f f8 ldur x1, [x19, #-16]
1000: 7b 17 00 91 add x27, x27, #5
1004: 21 b8 40 92 and x1, x1, #0x7fffffffffff
1008: 21 78 7b f8 ldr x1, [x1, x27, lsl #3]
100c: 88 7a 7c f8 ldr x8, [x20, x28, lsl #3]
1010: 21 10 40 f9 ldr x1, [x1, #32]
1014: 28 00 00 f9 str x8, [x1]
1018: b0 46 40 b8 ldr w16, [x21], #4
101c: c9 0e 30 8b add x9, x22, w16, uxtb #3
1020: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1024: 28 b5 47 f9 ldr x8, [x9, #3944]
1028: 1c 7e 50 d3 ubfx x28, x16, #16, #16
102c: 00 01 1f d6 br x8
0000000000001030 _lj_BC_USETP:
1030: 61 02 5f f8 ldur x1, [x19, #-16]
1034: 7b 17 00 91 add x27, x27, #5
1038: 21 b8 40 92 and x1, x1, #0x7fffffffffff
103c: 21 78 7b f8 ldr x1, [x1, x27, lsl #3]
1040: e8 bf 3c aa mvn x8, x28, lsl #47
1044: 21 10 40 f9 ldr x1, [x1, #32]
1048: 28 00 00 f9 str x8, [x1]
104c: b0 46 40 b8 ldr w16, [x21], #4
1050: c9 0e 30 8b add x9, x22, w16, uxtb #3
1054: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1058: 28 b5 47 f9 ldr x8, [x9, #3944]
105c: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1060: 00 01 1f d6 br x8
0000000000001064 _lj_BC_UCLO:
1064: e2 22 40 f9 ldr x2, [x23, #64]
1068: bc 0a 1c 8b add x28, x21, x28, lsl #2
106c: f3 12 00 f9 str x19, [x23, #32]
1070: 95 83 40 d1 sub x21, x28, #32, lsl #12
1074: a2 00 00 b4 cbz x2, #20 <_lj_BC_UCLO+0x24>
1078: e0 03 17 aa mov x0, x23
107c: 61 0e 1b 8b add x1, x19, x27, lsl #3
1080: 00 00 00 94 bl #0 <_lj_BC_UCLO+0x1c>
1084: f3 12 40 f9 ldr x19, [x23, #32]
1088: b0 46 40 b8 ldr w16, [x21], #4
108c: c9 0e 30 8b add x9, x22, w16, uxtb #3
1090: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1094: 28 b5 47 f9 ldr x8, [x9, #3944]
1098: 1c 7e 50 d3 ubfx x28, x16, #16, #16
109c: 00 01 1f d6 br x8
00000000000010a0 _lj_BC_FNEW:
10a0: fc 03 3c aa mvn x28, x28
10a4: f3 12 00 f9 str x19, [x23, #32]
10a8: 62 02 5f f8 ldur x2, [x19, #-16]
10ac: f5 07 00 f9 str x21, [sp, #8]
10b0: 81 7a 7c f8 ldr x1, [x20, x28, lsl #3]
10b4: e0 03 17 aa mov x0, x23
10b8: 42 b8 40 92 and x2, x2, #0x7fffffffffff
10bc: 00 00 00 94 bl #0 <_lj_BC_FNEW+0x1c>
10c0: f3 12 40 f9 ldr x19, [x23, #32]
10c4: 08 01 80 92 mov x8, #-9
10c8: 00 bc 08 8b add x0, x0, x8, lsl #47
10cc: 60 7a 3b f8 str x0, [x19, x27, lsl #3]
10d0: b0 46 40 b8 ldr w16, [x21], #4
10d4: c9 0e 30 8b add x9, x22, w16, uxtb #3
10d8: 1b 3e 48 d3 ubfx x27, x16, #8, #8
10dc: 28 b5 47 f9 ldr x8, [x9, #3944]
10e0: 1c 7e 50 d3 ubfx x28, x16, #16, #16
10e4: 00 01 1f d6 br x8
00000000000010e8 _lj_BC_TNEW:
10e8: c2 0e 41 a9 ldp x2, x3, [x22, #16]
10ec: f3 12 00 f9 str x19, [x23, #32]
10f0: f5 07 00 f9 str x21, [sp, #8]
10f4: e0 03 17 aa mov x0, x23
10f8: 5f 00 03 eb cmp x2, x3
10fc: 02 02 00 54 b.hs #64 <_lj_BC_TNEW+0x54>
1100: 81 2b 40 92 and x1, x28, #0x7ff
1104: 82 ff 4b d3 lsr x2, x28, #11
1108: 3f fc 1f f1 cmp x1, #2047
110c: 28 00 81 52 mov w8, #2049
1110: 21 10 88 9a csel x1, x1, x8, ne
1114: 00 00 00 94 bl #0 <_lj_BC_TNEW+0x2c>
1118: f3 12 40 f9 ldr x19, [x23, #32]
111c: 40 ff ff f2 movk x0, #65530, lsl #48
1120: 60 7a 3b f8 str x0, [x19, x27, lsl #3]
1124: b0 46 40 b8 ldr w16, [x21], #4
1128: c9 0e 30 8b add x9, x22, w16, uxtb #3
112c: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1130: 28 b5 47 f9 ldr x8, [x9, #3944]
1134: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1138: 00 01 1f d6 br x8
113c: 00 00 00 94 bl #0 <_lj_BC_TNEW+0x54>
1140: e0 03 17 aa mov x0, x23
1144: ef ff ff 17 b #-68 <_lj_BC_TNEW+0x18>
0000000000001148 _lj_BC_TDUP:
1148: c2 0e 41 a9 ldp x2, x3, [x22, #16]
114c: f3 12 00 f9 str x19, [x23, #32]
1150: f5 07 00 f9 str x21, [sp, #8]
1154: e0 03 17 aa mov x0, x23
1158: 5f 00 03 eb cmp x2, x3
115c: a2 01 00 54 b.hs #52 <_lj_BC_TDUP+0x48>
1160: fc 03 3c aa mvn x28, x28
1164: 81 7a 7c f8 ldr x1, [x20, x28, lsl #3]
1168: 00 00 00 94 bl #0 <_lj_BC_TDUP+0x20>
116c: f3 12 40 f9 ldr x19, [x23, #32]
1170: 40 ff ff f2 movk x0, #65530, lsl #48
1174: 60 7a 3b f8 str x0, [x19, x27, lsl #3]
1178: b0 46 40 b8 ldr w16, [x21], #4
117c: c9 0e 30 8b add x9, x22, w16, uxtb #3
1180: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1184: 28 b5 47 f9 ldr x8, [x9, #3944]
1188: 1c 7e 50 d3 ubfx x28, x16, #16, #16
118c: 00 01 1f d6 br x8
1190: 00 00 00 94 bl #0 <_lj_BC_TDUP+0x48>
1194: e0 03 17 aa mov x0, x23
1198: f2 ff ff 17 b #-56 <_lj_BC_TDUP+0x18>
000000000000119c _lj_BC_GGET:
119c: 60 02 5f f8 ldur x0, [x19, #-16]
11a0: fc 03 3c aa mvn x28, x28
11a4: 00 b8 40 92 and x0, x0, #0x7fffffffffff
11a8: 01 08 40 f9 ldr x1, [x0, #16]
11ac: 9c 7a 7c f8 ldr x28, [x20, x28, lsl #3]
11b0: 33 00 00 14 b #204 <_lj_BC_TGETS+0x24>
00000000000011b4 _lj_BC_GSET:
11b4: 60 02 5f f8 ldur x0, [x19, #-16]
11b8: fc 03 3c aa mvn x28, x28
11bc: 00 b8 40 92 and x0, x0, #0x7fffffffffff
11c0: 01 08 40 f9 ldr x1, [x0, #16]
11c4: 9c 7a 7c f8 ldr x28, [x20, x28, lsl #3]
11c8: ab 00 00 14 b #684 <_lj_BC_TSETS+0x24>
00000000000011cc _lj_BC_TGETV:
11cc: 11 7e 58 d3 ubfx x17, x16, #24, #8
11d0: 9c 1f 40 92 and x28, x28, #0xff
11d4: 61 7a 71 f8 ldr x1, [x19, x17, lsl #3]
11d8: 69 7a 7c f8 ldr x9, [x19, x28, lsl #3]
11dc: 2f fc 6f 93 asr x15, x1, #47
11e0: ff 31 00 b1 cmn x15, #12
11e4: 21 b8 40 92 and x1, x1, #0x7fffffffffff
11e8: e1 98 00 54 b.ne #4892 <_lj_vmeta_tgetv>
11ec: 3f 83 49 eb cmp x25, x9, lsr #32
11f0: a1 02 00 54 b.ne #84 <_lj_BC_TGETV+0x78>
11f4: 22 08 40 f9 ldr x2, [x1, #16]
11f8: 20 30 40 b9 ldr w0, [x1, #48]
11fc: 42 4c 29 8b add x2, x2, w9, uxtw #3
1200: 3f 01 00 6b cmp w9, w0
1204: 02 98 00 54 b.hs #4864 <_lj_vmeta_tgetv>
1208: 48 00 40 f9 ldr x8, [x2]
120c: 1f 01 1a eb cmp x8, x26
1210: 00 01 00 54 b.eq #32 <_lj_BC_TGETV+0x64>
1214: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
1218: b0 46 40 b8 ldr w16, [x21], #4
121c: c9 0e 30 8b add x9, x22, w16, uxtb #3
1220: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1224: 28 b5 47 f9 ldr x8, [x9, #3944]
1228: 1c 7e 50 d3 ubfx x28, x16, #16, #16
122c: 00 01 1f d6 br x8
1230: 20 10 40 f9 ldr x0, [x1, #32]
1234: 00 ff ff b4 cbz x0, #-32 <_lj_BC_TGETV+0x48>
1238: 09 28 40 39 ldrb w9, [x0, #10]
123c: c9 fe 07 37 tbnz w9, #0, #-40 <_lj_BC_TGETV+0x48>
1240: b1 04 00 14 b #4804 <_lj_vmeta_tgetv>
1244: 2f fd 6f 93 asr x15, x9, #47
1248: ff 15 00 b1 cmn x15, #5
124c: c1 95 00 54 b.ne #4792 <_lj_vmeta_tgetv>
1250: 3c b9 40 92 and x28, x9, #0x7fffffffffff
1254: 0a 00 00 14 b #40 <_lj_BC_TGETS+0x24>
0000000000001258 _lj_BC_TGETS:
1258: 11 7e 58 d3 ubfx x17, x16, #24, #8
125c: 9c 1f 40 92 and x28, x28, #0xff
1260: 61 7a 71 f8 ldr x1, [x19, x17, lsl #3]
1264: fc 03 3c aa mvn x28, x28
1268: 9c 7a 7c f8 ldr x28, [x20, x28, lsl #3]
126c: 2f fc 6f 93 asr x15, x1, #47
1270: ff 31 00 b1 cmn x15, #12
1274: 21 b8 40 92 and x1, x1, #0x7fffffffffff
1278: 81 92 00 54 b.ne #4688 <_lj_vmeta_tgets1>
127c: 29 34 40 b9 ldr w9, [x1, #52]
1280: 8a 0f 40 b9 ldr w10, [x28, #12]
1284: 22 14 40 f9 ldr x2, [x1, #40]
1288: 29 01 0a 0a and w9, w9, w10
128c: 29 05 09 8b add x9, x9, x9, lsl #1
1290: 83 00 80 92 mov x3, #-5
1294: 42 0c 09 8b add x2, x2, x9, lsl #3
1298: 83 bf 03 8b add x3, x28, x3, lsl #47
129c: 48 00 40 a9 ldp x8, x0, [x2]
12a0: 42 08 40 f9 ldr x2, [x2, #16]
12a4: 1f 00 03 eb cmp x0, x3
12a8: 41 01 00 54 b.ne #40 <_lj_BC_TGETS+0x78>
12ac: 1f 01 1a eb cmp x8, x26
12b0: 40 01 00 54 b.eq #40 <_lj_BC_TGETS+0x80>
12b4: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
12b8: b0 46 40 b8 ldr w16, [x21], #4
12bc: c9 0e 30 8b add x9, x22, w16, uxtb #3
12c0: 1b 3e 48 d3 ubfx x27, x16, #8, #8
12c4: 28 b5 47 f9 ldr x8, [x9, #3944]
12c8: 1c 7e 50 d3 ubfx x28, x16, #16, #16
12cc: 00 01 1f d6 br x8
12d0: 62 fe ff b5 cbnz x2, #-52 <_lj_BC_TGETS+0x44>
12d4: e8 03 1a aa mov x8, x26
12d8: 20 10 40 f9 ldr x0, [x1, #32]
12dc: c0 fe ff b4 cbz x0, #-40 <_lj_BC_TGETS+0x5c>
12e0: 09 28 40 39 ldrb w9, [x0, #10]
12e4: 89 fe 07 37 tbnz w9, #0, #-48 <_lj_BC_TGETS+0x5c>
12e8: 7c 04 00 14 b #4592 <_lj_vmeta_tgets>
00000000000012ec _lj_BC_TGETB:
12ec: 11 7e 58 d3 ubfx x17, x16, #24, #8
12f0: 9c 1f 40 92 and x28, x28, #0xff
12f4: 61 7a 71 f8 ldr x1, [x19, x17, lsl #3]
12f8: 2f fc 6f 93 asr x15, x1, #47
12fc: ff 31 00 b1 cmn x15, #12
1300: 21 b8 40 92 and x1, x1, #0x7fffffffffff
1304: 61 8f 00 54 b.ne #4588 <_lj_vmeta_tgetb>
1308: 22 08 40 f9 ldr x2, [x1, #16]
130c: 20 30 40 b9 ldr w0, [x1, #48]
1310: 42 0c 1c 8b add x2, x2, x28, lsl #3
1314: 9f 03 00 6b cmp w28, w0
1318: c2 8e 00 54 b.hs #4568 <_lj_vmeta_tgetb>
131c: 48 00 40 f9 ldr x8, [x2]
1320: 1f 01 1a eb cmp x8, x26
1324: 00 01 00 54 b.eq #32 <_lj_BC_TGETB+0x58>
1328: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
132c: b0 46 40 b8 ldr w16, [x21], #4
1330: c9 0e 30 8b add x9, x22, w16, uxtb #3
1334: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1338: 28 b5 47 f9 ldr x8, [x9, #3944]
133c: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1340: 00 01 1f d6 br x8
1344: 20 10 40 f9 ldr x0, [x1, #32]
1348: 00 ff ff b4 cbz x0, #-32 <_lj_BC_TGETB+0x3c>
134c: 09 28 40 39 ldrb w9, [x0, #10]
1350: c9 fe 07 37 tbnz w9, #0, #-40 <_lj_BC_TGETB+0x3c>
1354: 67 04 00 14 b #4508 <_lj_vmeta_tgetb>
0000000000001358 _lj_BC_TGETR:
1358: 11 7e 58 d3 ubfx x17, x16, #24, #8
135c: 9c 1f 40 92 and x28, x28, #0xff
1360: 60 7a 71 f8 ldr x0, [x19, x17, lsl #3]
1364: 69 7a 7c f8 ldr x9, [x19, x28, lsl #3]
1368: 00 b8 40 92 and x0, x0, #0x7fffffffffff
136c: 02 08 40 f9 ldr x2, [x0, #16]
1370: 0a 30 40 b9 ldr w10, [x0, #48]
1374: 42 4c 29 8b add x2, x2, w9, uxtw #3
1378: 3f 01 0a 6b cmp w9, w10
137c: 22 8f 00 54 b.hs #4580 <_lj_vmeta_tgetr>
1380: 48 00 40 f9 ldr x8, [x2]
1384: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
1388: b0 46 40 b8 ldr w16, [x21], #4
138c: c9 0e 30 8b add x9, x22, w16, uxtb #3
1390: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1394: 28 b5 47 f9 ldr x8, [x9, #3944]
1398: 1c 7e 50 d3 ubfx x28, x16, #16, #16
139c: 00 01 1f d6 br x8
00000000000013a0 _lj_BC_TSETV:
13a0: 11 7e 58 d3 ubfx x17, x16, #24, #8
13a4: 9c 1f 40 92 and x28, x28, #0xff
13a8: 61 7a 71 f8 ldr x1, [x19, x17, lsl #3]
13ac: 69 7a 7c f8 ldr x9, [x19, x28, lsl #3]
13b0: 2f fc 6f 93 asr x15, x1, #47
13b4: ff 31 00 b1 cmn x15, #12
13b8: 21 b8 40 92 and x1, x1, #0x7fffffffffff
13bc: c1 8f 00 54 b.ne #4600 <_lj_vmeta_tsetv>
13c0: 3f 83 49 eb cmp x25, x9, lsr #32
13c4: c1 03 00 54 b.ne #120 <_lj_BC_TSETV+0x9c>
13c8: 22 08 40 f9 ldr x2, [x1, #16]
13cc: 20 30 40 b9 ldr w0, [x1, #48]
13d0: 42 4c 29 8b add x2, x2, w9, uxtw #3
13d4: 3f 01 00 6b cmp w9, w0
13d8: e2 8e 00 54 b.hs #4572 <_lj_vmeta_tsetv>
13dc: 49 00 40 f9 ldr x9, [x2]
13e0: 68 7a 7b f8 ldr x8, [x19, x27, lsl #3]
13e4: 2a 20 40 39 ldrb w10, [x1, #8]
13e8: 3f 01 1a eb cmp x9, x26
13ec: 20 01 00 54 b.eq #36 <_lj_BC_TSETV+0x70>
13f0: 48 00 00 f9 str x8, [x2]
13f4: 8a 01 10 37 tbnz w10, #2, #48 <_lj_BC_TSETV+0x84>
13f8: b0 46 40 b8 ldr w16, [x21], #4
13fc: c9 0e 30 8b add x9, x22, w16, uxtb #3
1400: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1404: 28 b5 47 f9 ldr x8, [x9, #3944]
1408: 1c 7e 50 d3 ubfx x28, x16, #16, #16
140c: 00 01 1f d6 br x8
1410: 20 10 40 f9 ldr x0, [x1, #32]
1414: e0 fe ff b4 cbz x0, #-36 <_lj_BC_TSETV+0x50>
1418: 09 28 40 39 ldrb w9, [x0, #10]
141c: a9 fe 0f 37 tbnz w9, #1, #-44 <_lj_BC_TSETV+0x50>
1420: 65 04 00 14 b #4500 <_lj_vmeta_tsetv>
1424: c9 22 40 f9 ldr x9, [x22, #64]
1428: 4a 79 1d 12 and w10, w10, #0xfffffffb
142c: c1 22 00 f9 str x1, [x22, #64]
1430: 2a 20 00 39 strb w10, [x1, #8]
1434: 29 0c 00 f9 str x9, [x1, #24]
1438: f0 ff ff 17 b #-64 <_lj_BC_TSETV+0x58>
143c: 2f fd 6f 93 asr x15, x9, #47
1440: ff 15 00 b1 cmn x15, #5
1444: 81 8b 00 54 b.ne #4464 <_lj_vmeta_tsetv>
1448: 3c b9 40 92 and x28, x9, #0x7fffffffffff
144c: 0a 00 00 14 b #40 <_lj_BC_TSETS+0x24>
0000000000001450 _lj_BC_TSETS:
1450: 11 7e 58 d3 ubfx x17, x16, #24, #8
1454: 9c 1f 40 92 and x28, x28, #0xff
1458: 61 7a 71 f8 ldr x1, [x19, x17, lsl #3]
145c: fc 03 3c aa mvn x28, x28
1460: 9c 7a 7c f8 ldr x28, [x20, x28, lsl #3]
1464: 2f fc 6f 93 asr x15, x1, #47
1468: ff 31 00 b1 cmn x15, #12
146c: 21 b8 40 92 and x1, x1, #0x7fffffffffff
1470: 41 88 00 54 b.ne #4360 <_lj_vmeta_tsets1>
1474: 29 34 40 b9 ldr w9, [x1, #52]
1478: 8a 0f 40 b9 ldr w10, [x28, #12]
147c: 22 14 40 f9 ldr x2, [x1, #40]
1480: 29 01 0a 0a and w9, w9, w10
1484: 29 05 09 8b add x9, x9, x9, lsl #1
1488: 83 00 80 92 mov x3, #-5
148c: 42 0c 09 8b add x2, x2, x9, lsl #3
1490: 83 bf 03 8b add x3, x28, x3, lsl #47
1494: 3f 28 00 39 strb wzr, [x1, #10]
1498: 49 00 40 a9 ldp x9, x0, [x2]
149c: 4b 08 40 f9 ldr x11, [x2, #16]
14a0: 2a 20 40 39 ldrb w10, [x1, #8]
14a4: 1f 00 03 eb cmp x0, x3
14a8: 21 02 00 54 b.ne #68 <_lj_BC_TSETS+0x9c>
14ac: 68 7a 7b f8 ldr x8, [x19, x27, lsl #3]
14b0: 3f 01 1a eb cmp x9, x26
14b4: 20 01 00 54 b.eq #36 <_lj_BC_TSETS+0x88>
14b8: 48 00 00 f9 str x8, [x2]
14bc: ca 03 10 37 tbnz w10, #2, #120 <_lj_BC_TSETS+0xe4>
14c0: b0 46 40 b8 ldr w16, [x21], #4
14c4: c9 0e 30 8b add x9, x22, w16, uxtb #3
14c8: 1b 3e 48 d3 ubfx x27, x16, #8, #8
14cc: 28 b5 47 f9 ldr x8, [x9, #3944]
14d0: 1c 7e 50 d3 ubfx x28, x16, #16, #16
14d4: 00 01 1f d6 br x8
14d8: 20 10 40 f9 ldr x0, [x1, #32]
14dc: e0 fe ff b4 cbz x0, #-36 <_lj_BC_TSETS+0x68>
14e0: 09 28 40 39 ldrb w9, [x0, #10]
14e4: a9 fe 0f 37 tbnz w9, #1, #-44 <_lj_BC_TSETS+0x68>
14e8: 28 04 00 14 b #4256 <_lj_vmeta_tsets>
14ec: e2 03 0b aa mov x2, x11
14f0: 4b fd ff b5 cbnz x11, #-88 <_lj_BC_TSETS+0x48>
14f4: 20 10 40 f9 ldr x0, [x1, #32]
14f8: 60 00 00 b4 cbz x0, #12 <_lj_BC_TSETS+0xb4>
14fc: 09 28 40 39 ldrb w9, [x0, #10]
1500: 49 84 08 36 tbz w9, #1, #4232 <_lj_vmeta_tsets>
1504: 89 00 80 92 mov x9, #-5
1508: f5 07 00 f9 str x21, [sp, #8]
150c: 88 bf 09 8b add x8, x28, x9, lsl #47
1510: f3 12 00 f9 str x19, [x23, #32]
1514: e0 03 17 aa mov x0, x23
1518: e8 0f 00 f9 str x8, [sp, #24]
151c: e2 63 00 91 add x2, sp, #24
1520: 00 00 00 94 bl #0 <_lj_BC_TSETS+0xd0>
1524: f3 12 40 f9 ldr x19, [x23, #32]
1528: 68 7a 7b f8 ldr x8, [x19, x27, lsl #3]
152c: 08 00 00 f9 str x8, [x0]
1530: e4 ff ff 17 b #-112 <_lj_BC_TSETS+0x70>
1534: c9 22 40 f9 ldr x9, [x22, #64]
1538: 4a 79 1d 12 and w10, w10, #0xfffffffb
153c: c1 22 00 f9 str x1, [x22, #64]
1540: 2a 20 00 39 strb w10, [x1, #8]
1544: 29 0c 00 f9 str x9, [x1, #24]
1548: de ff ff 17 b #-136 <_lj_BC_TSETS+0x70>
000000000000154c _lj_BC_TSETB:
154c: 11 7e 58 d3 ubfx x17, x16, #24, #8
1550: 9c 1f 40 92 and x28, x28, #0xff
1554: 61 7a 71 f8 ldr x1, [x19, x17, lsl #3]
1558: 2f fc 6f 93 asr x15, x1, #47
155c: ff 31 00 b1 cmn x15, #12
1560: 21 b8 40 92 and x1, x1, #0x7fffffffffff
1564: e1 81 00 54 b.ne #4156 <_lj_vmeta_tsetb>
1568: 22 08 40 f9 ldr x2, [x1, #16]
156c: 20 30 40 b9 ldr w0, [x1, #48]
1570: 42 0c 1c 8b add x2, x2, x28, lsl #3
1574: 9f 03 00 6b cmp w28, w0
1578: 42 81 00 54 b.hs #4136 <_lj_vmeta_tsetb>
157c: 49 00 40 f9 ldr x9, [x2]
1580: 68 7a 7b f8 ldr x8, [x19, x27, lsl #3]
1584: 2a 20 40 39 ldrb w10, [x1, #8]
1588: 3f 01 1a eb cmp x9, x26
158c: 20 01 00 54 b.eq #36 <_lj_BC_TSETB+0x64>
1590: 48 00 00 f9 str x8, [x2]
1594: 8a 01 10 37 tbnz w10, #2, #48 <_lj_BC_TSETB+0x78>
1598: b0 46 40 b8 ldr w16, [x21], #4
159c: c9 0e 30 8b add x9, x22, w16, uxtb #3
15a0: 1b 3e 48 d3 ubfx x27, x16, #8, #8
15a4: 28 b5 47 f9 ldr x8, [x9, #3944]
15a8: 1c 7e 50 d3 ubfx x28, x16, #16, #16
15ac: 00 01 1f d6 br x8
15b0: 20 10 40 f9 ldr x0, [x1, #32]
15b4: e0 fe ff b4 cbz x0, #-36 <_lj_BC_TSETB+0x44>
15b8: 09 28 40 39 ldrb w9, [x0, #10]
15bc: a9 fe 0f 37 tbnz w9, #1, #-44 <_lj_BC_TSETB+0x44>
15c0: f8 03 00 14 b #4064 <_lj_vmeta_tsetb>
15c4: c9 22 40 f9 ldr x9, [x22, #64]
15c8: 4a 79 1d 12 and w10, w10, #0xfffffffb
15cc: c1 22 00 f9 str x1, [x22, #64]
15d0: 2a 20 00 39 strb w10, [x1, #8]
15d4: 29 0c 00 f9 str x9, [x1, #24]
15d8: f0 ff ff 17 b #-64 <_lj_BC_TSETB+0x4c>
00000000000015dc _lj_BC_TSETM:
15dc: 7b 0e 1b 8b add x27, x19, x27, lsl #3
15e0: f1 23 40 b9 ldr w17, [sp, #32]
15e4: 61 83 5f f8 ldur x1, [x27, #-8]
15e8: 89 7a 7c f8 ldr x9, [x20, x28, lsl #3]
15ec: 31 22 00 d1 sub x17, x17, #8
15f0: f1 01 00 b4 cbz x17, #60 <_lj_BC_TSETM+0x50>
15f4: 21 b8 40 92 and x1, x1, #0x7fffffffffff
15f8: 20 30 40 b9 ldr w0, [x1, #48]
15fc: 22 0d 51 0b add w2, w9, w17, lsr #3
1600: 23 08 40 f9 ldr x3, [x1, #16]
1604: 5f 00 00 eb cmp x2, x0
1608: 71 03 11 8b add x17, x27, x17
160c: c8 01 00 54 b.hi #56 <_lj_BC_TSETM+0x68>
1610: 69 4c 29 8b add x9, x3, w9, uxtw #3
1614: 2a 20 40 39 ldrb w10, [x1, #8]
1618: 68 87 40 f8 ldr x8, [x27], #8
161c: 28 85 00 f8 str x8, [x9], #8
1620: 7f 03 11 eb cmp x27, x17
1624: a3 ff ff 54 b.lo #-12 <_lj_BC_TSETM+0x3c>
1628: 8a 01 10 37 tbnz w10, #2, #48 <_lj_BC_TSETM+0x7c>
162c: b0 46 40 b8 ldr w16, [x21], #4
1630: c9 0e 30 8b add x9, x22, w16, uxtb #3
1634: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1638: 28 b5 47 f9 ldr x8, [x9, #3944]
163c: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1640: 00 01 1f d6 br x8
1644: f3 12 00 f9 str x19, [x23, #32]
1648: e0 03 17 aa mov x0, x23
164c: f5 07 00 f9 str x21, [sp, #8]
1650: 00 00 00 94 bl #0 <_lj_BC_TSETM+0x74>
1654: e3 ff ff 17 b #-116 <_lj_BC_TSETM+0x4>
1658: c9 22 40 f9 ldr x9, [x22, #64]
165c: 4a 79 1d 12 and w10, w10, #0xfffffffb
1660: c1 22 00 f9 str x1, [x22, #64]
1664: 2a 20 00 39 strb w10, [x1, #8]
1668: 29 0c 00 f9 str x9, [x1, #24]
166c: f0 ff ff 17 b #-64 <_lj_BC_TSETM+0x50>
0000000000001670 _lj_BC_TSETR:
1670: 11 7e 58 d3 ubfx x17, x16, #24, #8
1674: 9c 1f 40 92 and x28, x28, #0xff
1678: 61 7a 71 f8 ldr x1, [x19, x17, lsl #3]
167c: 69 7a 7c f8 ldr x9, [x19, x28, lsl #3]
1680: 21 b8 40 92 and x1, x1, #0x7fffffffffff
1684: 20 08 40 f9 ldr x0, [x1, #16]
1688: 2a 20 40 39 ldrb w10, [x1, #8]
168c: 23 30 40 b9 ldr w3, [x1, #48]
1690: 00 4c 29 8b add x0, x0, w9, uxtw #3
1694: 6a 01 10 37 tbnz w10, #2, #44 <_lj_BC_TSETR+0x50>
1698: 3f 01 03 6b cmp w9, w3
169c: c2 7b 00 54 b.hs #3960 <_lj_vmeta_tsetr>
16a0: 68 7a 7b f8 ldr x8, [x19, x27, lsl #3]
16a4: 08 00 00 f9 str x8, [x0]
16a8: b0 46 40 b8 ldr w16, [x21], #4
16ac: c9 0e 30 8b add x9, x22, w16, uxtb #3
16b0: 1b 3e 48 d3 ubfx x27, x16, #8, #8
16b4: 28 b5 47 f9 ldr x8, [x9, #3944]
16b8: 1c 7e 50 d3 ubfx x28, x16, #16, #16
16bc: 00 01 1f d6 br x8
16c0: c8 22 40 f9 ldr x8, [x22, #64]
16c4: 4a 79 1d 12 and w10, w10, #0xfffffffb
16c8: c1 22 00 f9 str x1, [x22, #64]
16cc: 2a 20 00 39 strb w10, [x1, #8]
16d0: 28 0c 00 f9 str x8, [x1, #24]
16d4: f1 ff ff 17 b #-60 <_lj_BC_TSETR+0x28>
00000000000016d8 _lj_BC_CALLM:
16d8: e8 23 40 b9 ldr w8, [sp, #32]
16dc: 9c 1f 7d d3 ubfiz x28, x28, #3, #8
16e0: 9c 03 08 8b add x28, x28, x8
16e4: 02 00 00 14 b #8 <_lj_BC_CALL+0x4>
00000000000016e8 _lj_BC_CALL:
16e8: 9c 1f 7d d3 ubfiz x28, x28, #3, #8
16ec: f1 03 13 aa mov x17, x19
16f0: 73 0e 1b 8b add x19, x19, x27, lsl #3
16f4: 62 02 40 f9 ldr x2, [x19]
16f8: 9c 23 00 d1 sub x28, x28, #8
16fc: 73 42 00 91 add x19, x19, #16
1700: 4f fc 6f 93 asr x15, x2, #47
1704: ff 25 00 b1 cmn x15, #9
1708: 42 b8 40 92 and x2, x2, #0x7fffffffffff
170c: c1 83 00 54 b.ne #4216 <_lj_vmeta_call>
1710: 75 82 1f f8 stur x21, [x19, #-8]
1714: 55 10 40 f9 ldr x21, [x2, #32]
1718: b0 46 40 b8 ldr w16, [x21], #4
171c: c9 0e 30 8b add x9, x22, w16, uxtb #3
1720: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1724: 28 b5 47 f9 ldr x8, [x9, #3944]
1728: 7b 0e 1b 8b add x27, x19, x27, lsl #3
172c: 00 01 1f d6 br x8
0000000000001730 _lj_BC_CALLMT:
1730: e8 23 40 b9 ldr w8, [sp, #32]
1734: 1c 0d 1c 8b add x28, x8, x28, lsl #3
1738: 02 00 00 14 b #8 <_lj_BC_CALLT+0x4>
000000000000173c _lj_BC_CALLT:
173c: 9c f3 7d d3 lsl x28, x28, #3
1740: 7b 0e 1b 8b add x27, x19, x27, lsl #3
1744: 69 03 40 f9 ldr x9, [x27]
1748: 9c 23 00 d1 sub x28, x28, #8
174c: 7b 43 00 91 add x27, x27, #16
1750: 2f fd 6f 93 asr x15, x9, #47
1754: ff 25 00 b1 cmn x15, #9
1758: 22 b9 40 92 and x2, x9, #0x7fffffffffff
175c: 61 83 00 54 b.ne #4204 <_lj_vmeta_callt>
1760: 75 82 5f f8 ldur x21, [x19, #-8]
1764: 11 00 80 52 mov w17, #0
1768: 4a 28 40 39 ldrb w10, [x2, #10]
176c: bf 06 40 f2 tst x21, #0x3
1770: 21 03 00 54 b.ne #100 <_lj_BC_CALLT+0x98>
1774: 69 02 1f f8 stur x9, [x19, #-16]
1778: fc 00 00 b4 cbz x28, #28 <_lj_BC_CALLT+0x58>
177c: 68 6b 71 f8 ldr x8, [x27, x17]
1780: 29 22 00 91 add x9, x17, #8
1784: 3f 01 1c eb cmp x9, x28
1788: 68 6a 31 f8 str x8, [x19, x17]
178c: f1 03 09 aa mov x17, x9
1790: 61 ff ff 54 b.ne #-20 <_lj_BC_CALLT+0x40>
1794: 5f 05 00 f1 cmp x10, #1
1798: 08 01 00 54 b.hi #32 <_lj_BC_CALLT+0x7c>
179c: 55 10 40 f9 ldr x21, [x2, #32]
17a0: b0 46 40 b8 ldr w16, [x21], #4
17a4: c9 0e 30 8b add x9, x22, w16, uxtb #3
17a8: 1b 3e 48 d3 ubfx x27, x16, #8, #8
17ac: 28 b5 47 f9 ldr x8, [x9, #3944]
17b0: 7b 0e 1b 8b add x27, x19, x27, lsl #3
17b4: 00 01 1f d6 br x8
17b8: bb d2 5f 38 ldurb w27, [x21, #-3]
17bc: 60 0e 1b cb sub x0, x19, x27, lsl #3
17c0: 00 00 5e f8 ldur x0, [x0, #-32]
17c4: 00 b8 40 92 and x0, x0, #0x7fffffffffff
17c8: 00 10 40 f9 ldr x0, [x0, #32]
17cc: 14 80 5b f8 ldur x20, [x0, #-72]
17d0: f3 ff ff 17 b #-52 <_lj_BC_CALLT+0x60>
17d4: b5 06 40 d2 eor x21, x21, #0x3
17d8: bf 0a 40 f2 tst x21, #0x7
17dc: 2a 12 8a 9a csel x10, x17, x10, ne
17e0: a1 fc ff 54 b.ne #-108 <_lj_BC_CALLT+0x38>
17e4: 73 02 15 cb sub x19, x19, x21
17e8: 75 82 5f f8 ldur x21, [x19, #-8]
17ec: bf 06 40 f2 tst x21, #0x3
17f0: 2a 12 8a 9a csel x10, x17, x10, ne
17f4: e0 ff ff 17 b #-128 <_lj_BC_CALLT+0x38>
00000000000017f8 _lj_BC_ITERC:
17f8: 7b 0e 1b 8b add x27, x19, x27, lsl #3
17fc: 62 83 5e f8 ldur x2, [x27, #-24]
1800: f1 03 13 aa mov x17, x19
1804: 60 07 7f a9 ldp x0, x1, [x27, #-16]
1808: 73 43 00 91 add x19, x27, #16
180c: 1c 02 80 52 mov w28, #16
1810: 62 03 00 f9 str x2, [x27]
1814: 60 07 01 a9 stp x0, x1, [x27, #16]
1818: 4f fc 6f 93 asr x15, x2, #47
181c: ff 25 00 b1 cmn x15, #9
1820: 42 b8 40 92 and x2, x2, #0x7fffffffffff
1824: 01 7b 00 54 b.ne #3936 <_lj_vmeta_call>
1828: 75 82 1f f8 stur x21, [x19, #-8]
182c: 55 10 40 f9 ldr x21, [x2, #32]
1830: b0 46 40 b8 ldr w16, [x21], #4
1834: c9 0e 30 8b add x9, x22, w16, uxtb #3
1838: 1b 3e 48 d3 ubfx x27, x16, #8, #8
183c: 28 b5 47 f9 ldr x8, [x9, #3944]
1840: 7b 0e 1b 8b add x27, x19, x27, lsl #3
1844: 00 01 1f d6 br x8
0000000000001848 _lj_BC_ITERN:
1848: 7b 0e 1b 8b add x27, x19, x27, lsl #3
184c: 71 03 5f f8 ldur x17, [x27, #-16]
1850: ab 06 40 79 ldrh w11, [x21, #2]
1854: 60 83 5f b8 ldur w0, [x27, #-8]
1858: b5 12 00 91 add x21, x21, #4
185c: ab 0a 0b 8b add x11, x21, x11, lsl #2
1860: 31 ba 40 92 and x17, x17, #0x7fffffffffff
1864: 6b 81 40 d1 sub x11, x11, #32, lsl #12
1868: 29 32 40 b9 ldr w9, [x17, #48]
186c: 21 0a 40 f9 ldr x1, [x17, #16]
1870: 1c 00 09 eb subs x28, x0, x9
1874: 22 0c 00 8b add x2, x1, x0, lsl #3
1878: 02 02 00 54 b.hs #64 <_lj_BC_ITERN+0x70>
187c: 48 00 40 f9 ldr x8, [x2]
1880: 1f 01 1a eb cmp x8, x26
1884: 00 14 80 9a cinc x0, x0, eq
1888: 40 ff ff 54 b.eq #-24 <_lj_BC_ITERN+0x28>
188c: 00 00 18 8b add x0, x0, x24
1890: 60 23 00 a9 stp x0, x8, [x27]
1894: 00 04 00 91 add x0, x0, #1
1898: 60 83 1f b8 stur w0, [x27, #-8]
189c: f5 03 0b aa mov x21, x11
18a0: b0 46 40 b8 ldr w16, [x21], #4
18a4: c9 0e 30 8b add x9, x22, w16, uxtb #3
18a8: 1b 3e 48 d3 ubfx x27, x16, #8, #8
18ac: 28 b5 47 f9 ldr x8, [x9, #3944]
18b0: 1c 7e 50 d3 ubfx x28, x16, #16, #16
18b4: 00 01 1f d6 br x8
18b8: 2a 36 40 b9 ldr w10, [x17, #52]
18bc: 31 16 40 f9 ldr x17, [x17, #40]
18c0: 80 07 1c 8b add x0, x28, x28, lsl #1
18c4: 9f 03 0a eb cmp x28, x10
18c8: 22 0e 00 8b add x2, x17, x0, lsl #3
18cc: a8 fe ff 54 b.hi #-44 <_lj_BC_ITERN+0x58>
18d0: 48 00 40 a9 ldp x8, x0, [x2]
18d4: 1f 01 1a eb cmp x8, x26
18d8: 9c 07 00 91 add x28, x28, #1
18dc: 20 ff ff 54 b.eq #-28 <_lj_BC_ITERN+0x78>
18e0: 60 23 00 a9 stp x0, x8, [x27]
18e4: 80 03 09 8b add x0, x28, x9
18e8: ec ff ff 17 b #-80 <_lj_BC_ITERN+0x50>
00000000000018ec _lj_BC_VARG:
18ec: 11 7e 58 d3 ubfx x17, x16, #24, #8
18f0: 9c 1f 40 92 and x28, x28, #0xff
18f4: 69 82 5f f8 ldur x9, [x19, #-8]
18f8: 7c 0e 1c 8b add x28, x19, x28, lsl #3
18fc: 7b 0e 1b 8b add x27, x19, x27, lsl #3
1900: 9c 0f 00 91 add x28, x28, #3
1904: 6a 0f 11 8b add x10, x27, x17, lsl #3
1908: 9c 03 09 cb sub x28, x28, x9
190c: 6b 42 00 d1 sub x11, x19, #16
1910: d1 01 00 b4 cbz x17, #56 <_lj_BC_VARG+0x5c>
1914: 4a 41 00 d1 sub x10, x10, #16
1918: 9f 03 0b eb cmp x28, x11
191c: 88 87 40 f8 ldr x8, [x28], #8
1920: 08 31 9a 9a csel x8, x8, x26, lo
1924: 7f 03 0a eb cmp x27, x10
1928: 68 87 00 f8 str x8, [x27], #8
192c: 63 ff ff 54 b.lo #-20 <_lj_BC_VARG+0x2c>
1930: b0 46 40 b8 ldr w16, [x21], #4
1934: c9 0e 30 8b add x9, x22, w16, uxtb #3
1938: 1b 3e 48 d3 ubfx x27, x16, #8, #8
193c: 28 b5 47 f9 ldr x8, [x9, #3944]
1940: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1944: 00 01 1f d6 br x8
1948: e8 1a 40 f9 ldr x8, [x23, #48]
194c: 6a 01 1c eb subs x10, x11, x28
1950: f1 d3 8a 9a csel x17, xzr, x10, le
1954: 31 22 00 91 add x17, x17, #8
1958: 69 03 0a 8b add x9, x27, x10
195c: f1 23 00 b9 str w17, [sp, #32]
1960: 8d fe ff 54 b.le #-48 <_lj_BC_VARG+0x44>
1964: 3f 01 08 eb cmp x9, x8
1968: c8 00 00 54 b.hi #24 <_lj_BC_VARG+0x94>
196c: 88 87 40 f8 ldr x8, [x28], #8
1970: 68 87 00 f8 str x8, [x27], #8
1974: 9f 03 0b eb cmp x28, x11
1978: a3 ff ff 54 b.lo #-12 <_lj_BC_VARG+0x80>
197c: ed ff ff 17 b #-76 <_lj_BC_VARG+0x44>
1980: 41 fd 43 d3 lsr x1, x10, #3
1984: f3 6e 02 a9 stp x19, x27, [x23, #32]
1988: e0 03 17 aa mov x0, x23
198c: 9c 03 13 cb sub x28, x28, x19
1990: f5 07 00 f9 str x21, [sp, #8]
1994: 00 00 00 94 bl #0 <_lj_BC_VARG+0xa8>
1998: f3 6e 42 a9 ldp x19, x27, [x23, #32]
199c: 7c 02 1c 8b add x28, x19, x28
19a0: 6b 42 00 d1 sub x11, x19, #16
19a4: f2 ff ff 17 b #-56 <_lj_BC_VARG+0x80>
00000000000019a8 _lj_BC_ISNEXT:
19a8: 7b 0e 1b 8b add x27, x19, x27, lsl #3
19ac: 60 83 5e f8 ldur x0, [x27, #-24]
19b0: bc 0a 1c 8b add x28, x21, x28, lsl #2
19b4: 62 0f 7f a9 ldp x2, x3, [x27, #-16]
19b8: 9c 83 40 d1 sub x28, x28, #32, lsl #12
19bc: 0f fc 6f 93 asr x15, x0, #47
19c0: ff 25 00 b1 cmn x15, #9
19c4: 00 b8 40 92 and x0, x0, #0x7fffffffffff
19c8: 21 02 00 54 b.ne #68 <_lj_BC_ISNEXT+0x64>
19cc: 48 fc 6f 93 asr x8, x2, #47
19d0: 09 28 40 39 ldrb w9, [x0, #10]
19d4: 1f 31 00 b1 cmn x8, #12
19d8: 60 00 5a fa ccmp x3, x26, #0, eq
19dc: 20 09 44 7a ccmp w9, #4, #0, eq
19e0: 61 01 00 54 b.ne #44 <_lj_BC_ISNEXT+0x64>
19e4: e8 77 0f 32 mov w8, #-98305
19e8: 08 7d 60 d3 lsl x8, x8, #32
19ec: 68 83 1f f8 stur x8, [x27, #-8]
19f0: f5 03 1c aa mov x21, x28
19f4: b0 46 40 b8 ldr w16, [x21], #4
19f8: c9 0e 30 8b add x9, x22, w16, uxtb #3
19fc: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1a00: 28 b5 47 f9 ldr x8, [x9, #3944]
1a04: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1a08: 00 01 1f d6 br x8
1a0c: 08 0b 80 52 mov w8, #88
1a10: a9 08 80 52 mov w9, #69
1a14: a8 c2 1f 38 sturb w8, [x21, #-4]
1a18: 89 03 00 39 strb w9, [x28]
1a1c: f5 ff ff 17 b #-44 <_lj_BC_ISNEXT+0x48>
0000000000001a20 _lj_BC_RETM:
1a20: e8 23 40 b9 ldr w8, [sp, #32]
1a24: 75 82 5f f8 ldur x21, [x19, #-8]
1a28: 7b 0e 1b 8b add x27, x19, x27, lsl #3
1a2c: 1c 0d 1c 8b add x28, x8, x28, lsl #3
1a30: 04 00 00 14 b #16 <_lj_BC_RET+0xc>
0000000000001a34 _lj_BC_RET:
1a34: 75 82 5f f8 ldur x21, [x19, #-8]
1a38: 9c f3 7d d3 lsl x28, x28, #3
1a3c: 7b 0e 1b 8b add x27, x19, x27, lsl #3
1a40: fc 23 00 b9 str w28, [sp, #32]
1a44: a0 06 40 f2 ands x0, x21, #0x3
1a48: a1 06 40 d2 eor x1, x21, #0x3
1a4c: e1 03 00 54 b.ne #124 <_lj_BC_RET+0x94>
1a50: b0 c2 5f b8 ldur w16, [x21, #-4]
1a54: 89 23 00 f1 subs x9, x28, #8
1a58: 62 42 00 d1 sub x2, x19, #16
1a5c: c0 00 00 54 b.eq #24 <_lj_BC_RET+0x40>
1a60: 68 87 40 f8 ldr x8, [x27], #8
1a64: 73 22 00 91 add x19, x19, #8
1a68: 29 21 00 d1 sub x9, x9, #8
1a6c: 68 82 1e f8 stur x8, [x19, #-24]
1a70: 89 ff ff b5 cbnz x9, #-16 <_lj_BC_RET+0x2c>
1a74: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1a78: 43 0c 1b cb sub x3, x2, x27, lsl #3
1a7c: 11 7e 58 d3 ubfx x17, x16, #24, #8
1a80: 60 00 5f f8 ldur x0, [x3, #-16]
1a84: 9f 0f 11 eb cmp x28, x17, lsl #3
1a88: 63 01 00 54 b.lo #44 <_lj_BC_RET+0x80>
1a8c: 00 b8 40 92 and x0, x0, #0x7fffffffffff
1a90: f3 03 03 aa mov x19, x3
1a94: 01 10 40 f9 ldr x1, [x0, #32]
1a98: 34 80 5b f8 ldur x20, [x1, #-72]
1a9c: b0 46 40 b8 ldr w16, [x21], #4
1aa0: c9 0e 30 8b add x9, x22, w16, uxtb #3
1aa4: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1aa8: 28 b5 47 f9 ldr x8, [x9, #3944]
1aac: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1ab0: 00 01 1f d6 br x8
1ab4: 73 22 00 91 add x19, x19, #8
1ab8: 9c 23 00 91 add x28, x28, #8
1abc: 7a 82 1e f8 stur x26, [x19, #-24]
1ac0: f1 ff ff 17 b #-60 <_lj_BC_RET+0x50>
1ac4: 7b 0e 1b 8b add x27, x19, x27, lsl #3
1ac8: 3f 08 40 f2 tst x1, #0x7
1acc: 61 30 00 54 b.ne #1548 <_lj_vm_return>
1ad0: 73 02 01 cb sub x19, x19, x1
1ad4: 75 82 5f f8 ldur x21, [x19, #-8]
1ad8: db ff ff 17 b #-148 <_lj_BC_RET+0x10>
0000000000001adc _lj_BC_RET0:
1adc: 75 82 5f f8 ldur x21, [x19, #-8]
1ae0: 9c f3 7d d3 lsl x28, x28, #3
1ae4: fc 23 00 b9 str w28, [sp, #32]
1ae8: a0 06 40 f2 ands x0, x21, #0x3
1aec: a1 06 40 d2 eor x1, x21, #0x3
1af0: a1 fe ff 54 b.ne #-44 <_lj_BC_RET+0x90>
1af4: b0 c2 5f b8 ldur w16, [x21, #-4]
1af8: 63 42 00 d1 sub x3, x19, #16
1afc: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1b00: 73 0c 1b cb sub x19, x3, x27, lsl #3
1b04: 11 7e 58 d3 ubfx x17, x16, #24, #8
1b08: 60 02 5f f8 ldur x0, [x19, #-16]
1b0c: 9f 0f 11 eb cmp x28, x17, lsl #3
1b10: 43 01 00 54 b.lo #40 <_lj_BC_RET0+0x5c>
1b14: 00 b8 40 92 and x0, x0, #0x7fffffffffff
1b18: 01 10 40 f9 ldr x1, [x0, #32]
1b1c: 34 80 5b f8 ldur x20, [x1, #-72]
1b20: b0 46 40 b8 ldr w16, [x21], #4
1b24: c9 0e 30 8b add x9, x22, w16, uxtb #3
1b28: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1b2c: 28 b5 47 f9 ldr x8, [x9, #3944]
1b30: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1b34: 00 01 1f d6 br x8
1b38: 9c 23 00 91 add x28, x28, #8
1b3c: 7a 84 00 f8 str x26, [x3], #8
1b40: f3 ff ff 17 b #-52 <_lj_BC_RET0+0x30>
0000000000001b44 _lj_BC_RET1:
1b44: 75 82 5f f8 ldur x21, [x19, #-8]
1b48: 9c f3 7d d3 lsl x28, x28, #3
1b4c: fc 23 00 b9 str w28, [sp, #32]
1b50: a0 06 40 f2 ands x0, x21, #0x3
1b54: a1 06 40 d2 eor x1, x21, #0x3
1b58: 61 fb ff 54 b.ne #-148 <_lj_BC_RET+0x90>
1b5c: b0 c2 5f b8 ldur w16, [x21, #-4]
1b60: 68 7a 7b f8 ldr x8, [x19, x27, lsl #3]
1b64: 63 42 00 d1 sub x3, x19, #16
1b68: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1b6c: 73 0c 1b cb sub x19, x3, x27, lsl #3
1b70: 68 84 00 f8 str x8, [x3], #8
1b74: 11 7e 58 d3 ubfx x17, x16, #24, #8
1b78: 60 02 5f f8 ldur x0, [x19, #-16]
1b7c: 9f 0f 11 eb cmp x28, x17, lsl #3
1b80: 43 01 00 54 b.lo #40 <_lj_BC_RET1+0x64>
1b84: 00 b8 40 92 and x0, x0, #0x7fffffffffff
1b88: 01 10 40 f9 ldr x1, [x0, #32]
1b8c: 34 80 5b f8 ldur x20, [x1, #-72]
1b90: b0 46 40 b8 ldr w16, [x21], #4
1b94: c9 0e 30 8b add x9, x22, w16, uxtb #3
1b98: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1b9c: 28 b5 47 f9 ldr x8, [x9, #3944]
1ba0: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1ba4: 00 01 1f d6 br x8
1ba8: 9c 23 00 91 add x28, x28, #8
1bac: 7a 84 00 f8 str x26, [x3], #8
1bb0: f3 ff ff 17 b #-52 <_lj_BC_RET1+0x38>
0000000000001bb4 _lj_BC_FORI:
1bb4: 7b 0e 1b 8b add x27, x19, x27, lsl #3
1bb8: 60 07 40 a9 ldp x0, x1, [x27]
1bbc: 62 0b 40 f9 ldr x2, [x27, #16]
1bc0: bc 0a 1c 8b add x28, x21, x28, lsl #2
1bc4: 9c 83 40 d1 sub x28, x28, #32, lsl #12
1bc8: 3f 83 40 eb cmp x25, x0, lsr #32
1bcc: 21 02 00 54 b.ne #68 <_lj_BC_FORI+0x5c>
1bd0: 3f 83 41 eb cmp x25, x1, lsr #32
1bd4: 01 61 00 54 b.ne #3104 <_lj_vmeta_for>
1bd8: 3f 83 42 eb cmp x25, x2, lsr #32
1bdc: c1 60 00 54 b.ne #3096 <_lj_vmeta_for>
1be0: 42 01 f8 37 tbnz w2, #31, #40 <_lj_BC_FORI+0x54>
1be4: 1f 00 01 6b cmp w0, w1
1be8: 95 c3 95 9a csel x21, x28, x21, gt
1bec: 60 0f 00 f9 str x0, [x27, #24]
1bf0: b0 46 40 b8 ldr w16, [x21], #4
1bf4: c9 0e 30 8b add x9, x22, w16, uxtb #3
1bf8: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1bfc: 28 b5 47 f9 ldr x8, [x9, #3944]
1c00: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1c04: 00 01 1f d6 br x8
1c08: 3f 00 00 6b cmp w1, w0
1c0c: f7 ff ff 17 b #-36 <_lj_BC_FORI+0x34>
1c10: 60 07 40 6d ldp d0, d1, [x27]
1c14: 03 5f 00 54 b.lo #3040 <_lj_vmeta_for>
1c18: 3f 83 41 eb cmp x25, x1, lsr #32
1c1c: c9 5e 00 54 b.ls #3032 <_lj_vmeta_for>
1c20: 3f 83 42 eb cmp x25, x2, lsr #32
1c24: 89 5e 00 54 b.ls #3024 <_lj_vmeta_for>
1c28: 60 0f 00 fd str d0, [x27, #24]
1c2c: 82 00 f8 b7 tbnz x2, #63, #16 <_lj_BC_FORI+0x88>
1c30: 00 20 61 1e fcmp d0, d1
1c34: 95 83 95 9a csel x21, x28, x21, hi
1c38: ee ff ff 17 b #-72 <_lj_BC_FORI+0x3c>
1c3c: 20 20 60 1e fcmp d1, d0
1c40: fd ff ff 17 b #-12 <_lj_BC_FORI+0x80>
0000000000001c44 _lj_BC_JFORI:
1c44: 7b 0e 1b 8b add x27, x19, x27, lsl #3
1c48: 60 07 40 a9 ldp x0, x1, [x27]
1c4c: 62 0b 40 f9 ldr x2, [x27, #16]
1c50: bc 0a 1c 8b add x28, x21, x28, lsl #2
1c54: 9c 83 40 d1 sub x28, x28, #32, lsl #12
1c58: 3f 83 40 eb cmp x25, x0, lsr #32
1c5c: 61 02 00 54 b.ne #76 <_lj_BC_JFORI+0x64>
1c60: 3f 83 41 eb cmp x25, x1, lsr #32
1c64: 81 5c 00 54 b.ne #2960 <_lj_vmeta_for>
1c68: 3f 83 42 eb cmp x25, x2, lsr #32
1c6c: 41 5c 00 54 b.ne #2952 <_lj_vmeta_for>
1c70: 82 01 f8 37 tbnz w2, #31, #48 <_lj_BC_JFORI+0x5c>
1c74: 1f 00 01 6b cmp w0, w1
1c78: f5 03 1c aa mov x21, x28
1c7c: 9c e3 5f 78 ldurh w28, [x28, #-2]
1c80: 60 0f 00 f9 str x0, [x27, #24]
1c84: ed 11 00 54 b.le #572 <_lj_BC_JLOOP>
1c88: b0 46 40 b8 ldr w16, [x21], #4
1c8c: c9 0e 30 8b add x9, x22, w16, uxtb #3
1c90: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1c94: 28 b5 47 f9 ldr x8, [x9, #3944]
1c98: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1c9c: 00 01 1f d6 br x8
1ca0: 3f 00 00 6b cmp w1, w0
1ca4: f5 ff ff 17 b #-44 <_lj_BC_JFORI+0x34>
1ca8: 60 07 40 6d ldp d0, d1, [x27]
1cac: 43 5a 00 54 b.lo #2888 <_lj_vmeta_for>
1cb0: 3f 83 41 eb cmp x25, x1, lsr #32
1cb4: 09 5a 00 54 b.ls #2880 <_lj_vmeta_for>
1cb8: 3f 83 42 eb cmp x25, x2, lsr #32
1cbc: c9 59 00 54 b.ls #2872 <_lj_vmeta_for>
1cc0: 60 0f 00 fd str d0, [x27, #24]
1cc4: a2 00 f8 b7 tbnz x2, #63, #20 <_lj_BC_JFORI+0x94>
1cc8: 00 20 61 1e fcmp d0, d1
1ccc: 9c e3 5f 78 ldurh w28, [x28, #-2]
1cd0: 89 0f 00 54 b.ls #496 <_lj_BC_JLOOP>
1cd4: ed ff ff 17 b #-76 <_lj_BC_JFORI+0x44>
1cd8: 20 20 60 1e fcmp d1, d0
1cdc: fc ff ff 17 b #-16 <_lj_BC_JFORI+0x88>
0000000000001ce0 _lj_BC_FORL:
1ce0: a0 fe 41 d3 lsr x0, x21, #1
1ce4: 00 14 7f 92 and x0, x0, #0x7e
1ce8: 00 a0 3b 91 add x0, x0, #3816
1cec: c1 6a 60 78 ldrh w1, [x22, x0]
1cf0: 21 08 00 f1 subs x1, x1, #2
1cf4: c1 6a 20 78 strh w1, [x22, x0]
1cf8: 23 df 00 54 b.lo #7140 <_lj_vm_hotloop>
0000000000001cfc _lj_BC_IFORL:
1cfc: 7b 0e 1b 8b add x27, x19, x27, lsl #3
1d00: 60 07 40 a9 ldp x0, x1, [x27]
1d04: 62 0b 40 f9 ldr x2, [x27, #16]
1d08: bc 0a 1c 8b add x28, x21, x28, lsl #2
1d0c: 9c 83 40 d1 sub x28, x28, #32, lsl #12
1d10: 3f 83 40 eb cmp x25, x0, lsr #32
1d14: 21 02 00 54 b.ne #68 <_lj_BC_IFORL+0x5c>
1d18: 00 00 02 2b adds w0, w0, w2
1d1c: e6 00 00 54 b.vs #28 <_lj_BC_IFORL+0x3c>
1d20: 08 00 18 8b add x8, x0, x24
1d24: 62 01 f8 37 tbnz w2, #31, #44 <_lj_BC_IFORL+0x54>
1d28: 1f 00 01 6b cmp w0, w1
1d2c: 95 d3 95 9a csel x21, x28, x21, le
1d30: 68 03 00 f9 str x8, [x27]
1d34: 68 0f 00 f9 str x8, [x27, #24]
1d38: b0 46 40 b8 ldr w16, [x21], #4
1d3c: c9 0e 30 8b add x9, x22, w16, uxtb #3
1d40: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1d44: 28 b5 47 f9 ldr x8, [x9, #3944]
1d48: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1d4c: 00 01 1f d6 br x8
1d50: 3f 00 00 6b cmp w1, w0
1d54: f6 ff ff 17 b #-40 <_lj_BC_IFORL+0x30>
1d58: 60 07 40 6d ldp d0, d1, [x27]
1d5c: c3 54 00 54 b.lo #2712 <_lj_vmeta_for>
1d60: 62 0b 40 fd ldr d2, [x27, #16]
1d64: 00 28 62 1e fadd d0, d0, d2
1d68: c2 00 f8 b7 tbnz x2, #63, #24 <_lj_BC_IFORL+0x84>
1d6c: 00 20 61 1e fcmp d0, d1
1d70: 60 03 00 fd str d0, [x27]
1d74: 60 0f 00 fd str d0, [x27, #24]
1d78: 95 93 95 9a csel x21, x28, x21, ls
1d7c: ef ff ff 17 b #-68 <_lj_BC_IFORL+0x3c>
1d80: 20 20 60 1e fcmp d1, d0
1d84: fb ff ff 17 b #-20 <_lj_BC_IFORL+0x74>
0000000000001d88 _lj_BC_JFORL:
1d88: 7b 0e 1b 8b add x27, x19, x27, lsl #3
1d8c: 60 07 40 a9 ldp x0, x1, [x27]
1d90: 62 0b 40 f9 ldr x2, [x27, #16]
1d94: 3f 83 40 eb cmp x25, x0, lsr #32
1d98: 21 02 00 54 b.ne #68 <_lj_BC_JFORL+0x54>
1d9c: 00 00 02 2b adds w0, w0, w2
1da0: e6 00 00 54 b.vs #28 <_lj_BC_JFORL+0x34>
1da4: 08 00 18 8b add x8, x0, x24
1da8: 62 01 f8 37 tbnz w2, #31, #44 <_lj_BC_JFORL+0x4c>
1dac: 1f 00 01 6b cmp w0, w1
1db0: 68 03 00 f9 str x8, [x27]
1db4: 68 0f 00 f9 str x8, [x27, #24]
1db8: 4d 08 00 54 b.le #264 <_lj_BC_JLOOP>
1dbc: b0 46 40 b8 ldr w16, [x21], #4
1dc0: c9 0e 30 8b add x9, x22, w16, uxtb #3
1dc4: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1dc8: 28 b5 47 f9 ldr x8, [x9, #3944]
1dcc: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1dd0: 00 01 1f d6 br x8
1dd4: 3f 00 00 6b cmp w1, w0
1dd8: f6 ff ff 17 b #-40 <_lj_BC_JFORL+0x28>
1ddc: 60 07 40 6d ldp d0, d1, [x27]
1de0: a3 50 00 54 b.lo #2580 <_lj_vmeta_for>
1de4: 62 0b 40 fd ldr d2, [x27, #16]
1de8: 00 28 62 1e fadd d0, d0, d2
1dec: c2 00 f8 b7 tbnz x2, #63, #24 <_lj_BC_JFORL+0x7c>
1df0: 00 20 61 1e fcmp d0, d1
1df4: 60 03 00 fd str d0, [x27]
1df8: 60 0f 00 fd str d0, [x27, #24]
1dfc: 29 06 00 54 b.ls #196 <_lj_BC_JLOOP>
1e00: ef ff ff 17 b #-68 <_lj_BC_JFORL+0x34>
1e04: 20 20 60 1e fcmp d1, d0
1e08: fb ff ff 17 b #-20 <_lj_BC_JFORL+0x6c>
0000000000001e0c _lj_BC_ITERL:
1e0c: a0 fe 41 d3 lsr x0, x21, #1
1e10: 00 14 7f 92 and x0, x0, #0x7e
1e14: 00 a0 3b 91 add x0, x0, #3816
1e18: c1 6a 60 78 ldrh w1, [x22, x0]
1e1c: 21 08 00 f1 subs x1, x1, #2
1e20: c1 6a 20 78 strh w1, [x22, x0]
1e24: c3 d5 00 54 b.lo #6840 <_lj_vm_hotloop>
0000000000001e28 _lj_BC_IITERL:
1e28: 60 7a 7b f8 ldr x0, [x19, x27, lsl #3]
1e2c: 69 0e 1b 8b add x9, x19, x27, lsl #3
1e30: 1f 00 1a eb cmp x0, x26
1e34: 80 00 00 54 b.eq #16 <_lj_BC_IITERL+0x1c>
1e38: a8 0a 1c 8b add x8, x21, x28, lsl #2
1e3c: 15 81 40 d1 sub x21, x8, #32, lsl #12
1e40: 20 81 1f f8 stur x0, [x9, #-8]
1e44: b0 46 40 b8 ldr w16, [x21], #4
1e48: c9 0e 30 8b add x9, x22, w16, uxtb #3
1e4c: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1e50: 28 b5 47 f9 ldr x8, [x9, #3944]
1e54: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1e58: 00 01 1f d6 br x8
0000000000001e5c _lj_BC_JITERL:
1e5c: 60 7a 7b f8 ldr x0, [x19, x27, lsl #3]
1e60: 69 0e 1b 8b add x9, x19, x27, lsl #3
1e64: 1f 00 1a eb cmp x0, x26
1e68: 60 00 00 54 b.eq #12 <_lj_BC_JITERL+0x18>
1e6c: 20 81 1f f8 stur x0, [x9, #-8]
1e70: 14 00 00 14 b #80 <_lj_BC_JLOOP>
1e74: b0 46 40 b8 ldr w16, [x21], #4
1e78: c9 0e 30 8b add x9, x22, w16, uxtb #3
1e7c: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1e80: 28 b5 47 f9 ldr x8, [x9, #3944]
1e84: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1e88: 00 01 1f d6 br x8
0000000000001e8c _lj_BC_LOOP:
1e8c: a0 fe 41 d3 lsr x0, x21, #1
1e90: 00 14 7f 92 and x0, x0, #0x7e
1e94: 00 a0 3b 91 add x0, x0, #3816
1e98: c1 6a 60 78 ldrh w1, [x22, x0]
1e9c: 21 08 00 f1 subs x1, x1, #2
1ea0: c1 6a 20 78 strh w1, [x22, x0]
1ea4: c3 d1 00 54 b.lo #6712 <_lj_vm_hotloop>
0000000000001ea8 _lj_BC_ILOOP:
1ea8: b0 46 40 b8 ldr w16, [x21], #4
1eac: c9 0e 30 8b add x9, x22, w16, uxtb #3
1eb0: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1eb4: 28 b5 47 f9 ldr x8, [x9, #3944]
1eb8: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1ebc: 00 01 1f d6 br x8
0000000000001ec0 _lj_BC_JLOOP:
1ec0: c0 22 42 f9 ldr x0, [x22, #1088]
1ec4: 01 00 80 52 mov w1, #0
1ec8: 1c 78 7c f8 ldr x28, [x0, x28, lsl #3]
1ecc: c1 ba 00 b9 str w1, [x22, #184]
1ed0: 9b 2f 40 f9 ldr x27, [x28, #88]
1ed4: d3 be 00 f9 str x19, [x22, #376]
1ed8: d7 72 00 f9 str x23, [x22, #224]
1edc: ff 43 00 d1 sub sp, sp, #16
1ee0: 60 03 1f d6 br x27
0000000000001ee4 _lj_BC_JMP:
1ee4: bc 0a 1c 8b add x28, x21, x28, lsl #2
1ee8: 95 83 40 d1 sub x21, x28, #32, lsl #12
1eec: b0 46 40 b8 ldr w16, [x21], #4
1ef0: c9 0e 30 8b add x9, x22, w16, uxtb #3
1ef4: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1ef8: 28 b5 47 f9 ldr x8, [x9, #3944]
1efc: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1f00: 00 01 1f d6 br x8
0000000000001f04 _lj_BC_FUNCF:
1f04: a0 fe 41 d3 lsr x0, x21, #1
1f08: 00 14 7f 92 and x0, x0, #0x7e
1f0c: 00 a0 3b 91 add x0, x0, #3816
1f10: c1 6a 60 78 ldrh w1, [x22, x0]
1f14: 21 04 00 f1 subs x1, x1, #1
1f18: c1 6a 20 78 strh w1, [x22, x0]
1f1c: e3 cf 00 54 b.lo #6652 <_lj_vm_hotcall>
0000000000001f20 _lj_BC_IFUNCF:
1f20: e0 1a 40 f9 ldr x0, [x23, #48]
1f24: a9 e2 59 38 ldurb w9, [x21, #-98]
1f28: b4 42 5b f8 ldur x20, [x21, #-76]
1f2c: 7f 03 00 eb cmp x27, x0
1f30: 68 16 00 54 b.hi #716 <_lj_vm_growstack_l>
1f34: 9f 0f 09 eb cmp x28, x9, lsl #3
1f38: e3 00 00 54 b.lo #28 <_lj_BC_IFUNCF+0x34>
1f3c: b0 46 40 b8 ldr w16, [x21], #4
1f40: c9 0e 30 8b add x9, x22, w16, uxtb #3
1f44: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1f48: 28 b5 47 f9 ldr x8, [x9, #3944]
1f4c: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1f50: 00 01 1f d6 br x8
1f54: 7a 6a 3c f8 str x26, [x19, x28]
1f58: 9c 23 00 91 add x28, x28, #8
1f5c: f6 ff ff 17 b #-40 <_lj_BC_IFUNCF+0x14>
0000000000001f60 _lj_BC_JFUNCF:
1f60: e0 1a 40 f9 ldr x0, [x23, #48]
1f64: a9 e2 59 38 ldurb w9, [x21, #-98]
1f68: b4 42 5b f8 ldur x20, [x21, #-76]
1f6c: 7f 03 00 eb cmp x27, x0
1f70: 68 14 00 54 b.hi #652 <_lj_vm_growstack_l>
1f74: 9f 0f 09 eb cmp x28, x9, lsl #3
1f78: 63 00 00 54 b.lo #12 <_lj_BC_JFUNCF+0x24>
1f7c: 1c 7e 50 d3 ubfx x28, x16, #16, #16
1f80: d0 ff ff 17 b #-192 <_lj_BC_JLOOP>
1f84: 7a 6a 3c f8 str x26, [x19, x28]
1f88: 9c 23 00 91 add x28, x28, #8
1f8c: fa ff ff 17 b #-24 <_lj_BC_JFUNCF+0x14>
0000000000001f90 _lj_BC_IFUNCV:
1f90: e0 1a 40 f9 ldr x0, [x23, #48]
1f94: 08 01 80 92 mov x8, #-9
1f98: 6a 02 1c 8b add x10, x19, x28
1f9c: 42 bc 08 8b add x2, x2, x8, lsl #47
1fa0: 7b 03 1c 8b add x27, x27, x28
1fa4: 88 4f 00 91 add x8, x28, #19
1fa8: 42 85 00 f8 str x2, [x10], #8
1fac: b4 42 5b f8 ldur x20, [x21, #-76]
1fb0: 7f 03 00 eb cmp x27, x0
1fb4: 48 85 00 f8 str x8, [x10], #8
1fb8: 22 12 00 54 b.hs #580 <_lj_vm_growstack_l>
1fbc: 5c 41 00 d1 sub x28, x10, #16
1fc0: a9 e2 59 38 ldurb w9, [x21, #-98]
1fc4: fb 03 13 aa mov x27, x19
1fc8: f3 03 0a aa mov x19, x10
1fcc: 09 01 00 b4 cbz x9, #32 <_lj_BC_IFUNCV+0x5c>
1fd0: 7f 03 1c eb cmp x27, x28
1fd4: 82 01 00 54 b.hs #48 <_lj_BC_IFUNCV+0x74>
1fd8: 68 03 40 f9 ldr x8, [x27]
1fdc: 29 05 00 d1 sub x9, x9, #1
1fe0: 7a 87 00 f8 str x26, [x27], #8
1fe4: 48 85 00 f8 str x8, [x10], #8
1fe8: 49 ff ff b5 cbnz x9, #-24 <_lj_BC_IFUNCV+0x40>
1fec: b0 46 40 b8 ldr w16, [x21], #4
1ff0: c9 0e 30 8b add x9, x22, w16, uxtb #3
1ff4: 1b 3e 48 d3 ubfx x27, x16, #8, #8
1ff8: 28 b5 47 f9 ldr x8, [x9, #3944]
1ffc: 1c 7e 50 d3 ubfx x28, x16, #16, #16
2000: 00 01 1f d6 br x8
2004: 29 05 00 d1 sub x9, x9, #1
2008: 5a 85 00 f8 str x26, [x10], #8
200c: 09 ff ff b4 cbz x9, #-32 <_lj_BC_IFUNCV+0x5c>
2010: fd ff ff 17 b #-12 <_lj_BC_IFUNCV+0x74>
0000000000002014 _lj_BC_JFUNCV:
2014: 00 00 20 d4 brk #0
0000000000002018 _lj_BC_FUNCC:
2018: 43 14 40 f9 ldr x3, [x2, #40]
201c: 61 03 1c 8b add x1, x27, x28
2020: e0 1a 40 f9 ldr x0, [x23, #48]
2024: 7c 02 1c 8b add x28, x19, x28
2028: 3f 00 00 eb cmp x1, x0
202c: f3 72 02 a9 stp x19, x28, [x23, #32]
2030: 28 00 80 12 mov w8, #-2
2034: e0 03 17 aa mov x0, x23
2038: e8 0d 00 54 b.hi #444 <_lj_vm_growstack_c>
203c: c8 ba 00 b9 str w8, [x22, #184]
2040: 60 00 3f d6 blr x3
2044: f3 26 42 a9 ldp x19, x9, [x23, #32]
2048: d7 ba 00 f9 str x23, [x22, #368]
204c: 1c 7c 7d 93 sbfiz x28, x0, #3, #32
2050: da ba 00 b9 str w26, [x22, #184]
2054: 75 82 5f f8 ldur x21, [x19, #-8]
2058: 3b 01 1c cb sub x27, x9, x28
205c: 19 00 00 14 b #100 <_lj_vm_returnc>
0000000000002060 _lj_BC_FUNCCW:
2060: c3 ae 40 f9 ldr x3, [x22, #344]
2064: 61 03 1c 8b add x1, x27, x28
2068: e0 1a 40 f9 ldr x0, [x23, #48]
206c: 7c 02 1c 8b add x28, x19, x28
2070: 3f 00 00 eb cmp x1, x0
2074: f3 72 02 a9 stp x19, x28, [x23, #32]
2078: 41 14 40 f9 ldr x1, [x2, #40]
207c: 28 00 80 12 mov w8, #-2
2080: e0 03 17 aa mov x0, x23
2084: 88 0b 00 54 b.hi #368 <_lj_vm_growstack_c>
2088: c8 ba 00 b9 str w8, [x22, #184]
208c: 60 00 3f d6 blr x3
2090: f3 26 42 a9 ldp x19, x9, [x23, #32]
2094: d7 ba 00 f9 str x23, [x22, #368]
2098: 1c 7c 7d 93 sbfiz x28, x0, #3, #32
209c: da ba 00 b9 str w26, [x22, #184]
20a0: 75 82 5f f8 ldur x21, [x19, #-8]
20a4: 3b 01 1c cb sub x27, x9, x28
20a8: 06 00 00 14 b #24 <_lj_vm_returnc>
00000000000020ac _lj_vm_returnp:
20ac: 15 1d 10 36 tbz w21, #2, #928 <_lj_cont_dispatch>
20b0: 35 82 5f f8 ldur x21, [x17, #-8]
20b4: 28 00 e0 92 mov x8, #-281474976710657
20b8: f3 03 11 aa mov x19, x17
20bc: 68 8f 1f f8 str x8, [x27, #-8]!
00000000000020c0 _lj_vm_returnc:
20c0: 9c 23 00 b1 adds x28, x28, #8
20c4: 20 00 80 52 mov w0, #1
20c8: 00 07 00 54 b.eq #224 <_lj_vm_unwind_c_eh>
20cc: fc 23 00 b9 str w28, [sp, #32]
20d0: a0 06 40 f2 ands x0, x21, #0x3
20d4: e0 cb ff 54 b.eq #-1668 <_lj_BC_RET+0x1c>
00000000000020d8 _lj_vm_return:
20d8: b1 f2 7d 92 and x17, x21, #0xfffffffffffffff8
20dc: 1f 04 00 f1 cmp x0, #1
20e0: 71 02 11 cb sub x17, x19, x17
20e4: 41 fe ff 54 b.ne #-56 <_lj_vm_returnp>
20e8: f1 12 00 f9 str x17, [x23, #32]
20ec: e1 2b 80 b9 ldrsw x1, [sp, #40]
20f0: 28 00 80 12 mov w8, #-2
20f4: 73 42 00 d1 sub x19, x19, #16
20f8: 8a 23 00 f1 subs x10, x28, #8
20fc: c8 ba 00 b9 str w8, [x22, #184]
2100: a0 00 00 54 b.eq #20 <_lj_vm_return+0x3c>
2104: 4a 21 00 f1 subs x10, x10, #8
2108: 68 87 40 f8 ldr x8, [x27], #8
210c: 68 86 00 f8 str x8, [x19], #8
2110: a1 ff ff 54 b.ne #-12 <_lj_vm_return+0x2c>
2114: 9f 0f 01 eb cmp x28, x1, lsl #3
2118: 21 02 00 54 b.ne #68 <_lj_vm_leave_unw+0x30>
211c: f3 16 00 f9 str x19, [x23, #40]
0000000000002120 _lj_vm_leave_cp:
2120: fc 03 40 f9 ldr x28, [sp]
2124: 00 00 80 52 mov w0, #0
2128: fc 2a 00 f9 str x28, [x23, #80]
000000000000212c _lj_vm_leave_unw:
212c: f4 4f 4b a9 ldp x20, x19, [sp, #176]
2130: e9 23 46 6d ldp d9, d8, [sp, #96]
2134: f6 57 4a a9 ldp x22, x21, [sp, #160]
2138: eb 2b 45 6d ldp d11, d10, [sp, #80]
213c: f8 5f 49 a9 ldp x24, x23, [sp, #144]
2140: ed 33 44 6d ldp d13, d12, [sp, #64]
2144: fa 67 48 a9 ldp x26, x25, [sp, #128]
2148: ef 3b 43 6d ldp d15, d14, [sp, #48]
214c: fc 6f 47 a9 ldp x28, x27, [sp, #112]
2150: fd 7b 4c a9 ldp x29, x30, [sp, #192]
2154: ff 43 03 91 add sp, sp, #208
2158: c0 03 5f d6 ret
215c: ec 00 00 54 b.gt #28 <_lj_vm_leave_unw+0x4c>
2160: e2 1a 40 f9 ldr x2, [x23, #48]
2164: 7f 02 02 eb cmp x19, x2
2168: 02 01 00 54 b.hs #32 <_lj_vm_leave_unw+0x5c>
216c: 7a 86 00 f8 str x26, [x19], #8
2170: 9c 23 00 91 add x28, x28, #8
2174: e8 ff ff 17 b #-96 <_lj_vm_return+0x3c>
2178: 21 fd ff b4 cbz x1, #-92 <_lj_vm_return+0x44>
217c: 80 0f 01 cb sub x0, x28, x1, lsl #3
2180: 73 02 00 cb sub x19, x19, x0
2184: e6 ff ff 17 b #-104 <_lj_vm_return+0x44>
2188: f3 16 00 f9 str x19, [x23, #40]
218c: e0 03 17 aa mov x0, x23
2190: 00 00 00 94 bl #0 <_lj_vm_leave_unw+0x64>
2194: f3 16 40 f9 ldr x19, [x23, #40]
2198: e1 2b 80 b9 ldrsw x1, [sp, #40]
219c: de ff ff 17 b #-136 <_lj_vm_return+0x3c>
00000000000021a0 _lj_vm_unwind_c:
21a0: 1f 00 00 91 mov sp, x0
21a4: e0 03 01 aa mov x0, x1
00000000000021a8 _lj_vm_unwind_c_eh:
21a8: f7 0b 40 f9 ldr x23, [sp, #16]
21ac: 28 00 80 12 mov w8, #-2
21b0: f6 0a 40 f9 ldr x22, [x23, #16]
21b4: c8 ba 00 b9 str w8, [x22, #184]
21b8: dd ff ff 17 b #-140 <_lj_vm_leave_unw>
00000000000021bc _lj_vm_unwind_ff:
21bc: 1f f4 7e 92 and sp, x0, #0xfffffffffffffffc
00000000000021c0 _lj_vm_unwind_ff_eh:
21c0: f7 0b 40 f9 ldr x23, [sp, #16]
21c4: 38 ff ff d2 mov x24, #-1970324836974592
21c8: 39 ff bf d2 mov x25, #4294508544
21cc: 1a 00 80 92 mov x26, #-1
21d0: 1c 02 80 52 mov w28, #16
21d4: f3 12 40 f9 ldr x19, [x23, #32]
21d8: f6 0a 40 f9 ldr x22, [x23, #16]
21dc: 08 00 d0 92 mov x8, #-140737488355329
21e0: 7b 22 00 d1 sub x27, x19, #8
21e4: 75 82 5f f8 ldur x21, [x19, #-8]
21e8: 68 82 1f f8 stur x8, [x19, #-8]
21ec: da ba 00 b9 str w26, [x22, #184]
21f0: b4 ff ff 17 b #-304 <_lj_vm_returnc>
00000000000021f4 _lj_vm_growstack_c:
21f4: 81 02 80 52 mov w1, #20
21f8: 07 00 00 14 b #28 <_lj_vm_growstack_l+0x18>
00000000000021fc _lj_vm_growstack_l:
21fc: 7c 02 1c 8b add x28, x19, x28
2200: 7b 03 13 cb sub x27, x27, x19
2204: e0 03 17 aa mov x0, x23
2208: f3 72 02 a9 stp x19, x28, [x23, #32]
220c: b5 12 00 91 add x21, x21, #4
2210: 61 ff 43 d3 lsr x1, x27, #3
2214: f5 07 00 f9 str x21, [sp, #8]
2218: 00 00 00 94 bl #0 <_lj_vm_growstack_l+0x1c>
221c: f3 72 42 a9 ldp x19, x28, [x23, #32]
2220: 62 02 5f f8 ldur x2, [x19, #-16]
2224: 9c 03 13 cb sub x28, x28, x19
2228: 42 b8 40 92 and x2, x2, #0x7fffffffffff
222c: 55 10 40 f9 ldr x21, [x2, #32]
2230: b0 46 40 b8 ldr w16, [x21], #4
2234: c9 0e 30 8b add x9, x22, w16, uxtb #3
2238: 1b 3e 48 d3 ubfx x27, x16, #8, #8
223c: 28 b5 47 f9 ldr x8, [x9, #3944]
2240: 7b 0e 1b 8b add x27, x19, x27, lsl #3
2244: 00 01 1f d6 br x8
0000000000002248 _lj_vm_resume:
2248: ff 43 03 d1 sub sp, sp, #208
224c: fd 7b 0c a9 stp x29, x30, [sp, #192]
2250: fd 03 00 91 mov x29, sp
2254: f4 4f 0b a9 stp x20, x19, [sp, #176]
2258: e9 23 06 6d stp d9, d8, [sp, #96]
225c: f6 57 0a a9 stp x22, x21, [sp, #160]
2260: eb 2b 05 6d stp d11, d10, [sp, #80]
2264: f8 5f 09 a9 stp x24, x23, [sp, #144]
2268: ed 33 04 6d stp d13, d12, [sp, #64]
226c: fa 67 08 a9 stp x26, x25, [sp, #128]
2270: ef 3b 03 6d stp d15, d14, [sp, #48]
2274: fc 6f 07 a9 stp x28, x27, [sp, #112]
2278: f7 03 00 aa mov x23, x0
227c: f6 0a 40 f9 ldr x22, [x23, #16]
2280: f3 03 01 aa mov x19, x1
2284: f7 0b 00 f9 str x23, [sp, #16]
2288: b5 00 80 52 mov w21, #5
228c: ff 2b 00 b9 str wzr, [sp, #40]
2290: e8 07 00 91 add x8, sp, #1
2294: e9 2e 40 39 ldrb w9, [x23, #11]
2298: ff 27 00 b9 str wzr, [sp, #36]
229c: f7 07 00 f9 str x23, [sp, #8]
22a0: ff 03 00 f9 str xzr, [sp]
22a4: e8 2a 00 f9 str x8, [x23, #80]
22a8: a9 06 00 34 cbz w9, #212 <_lj_vm_call+0x58>
22ac: d7 ba 00 f9 str x23, [x22, #368]
22b0: fb 03 13 aa mov x27, x19
22b4: f3 02 42 a9 ldp x19, x0, [x23, #32]
22b8: 38 ff ff d2 mov x24, #-1970324836974592
22bc: 39 ff bf d2 mov x25, #4294508544
22c0: 75 82 5f f8 ldur x21, [x19, #-8]
22c4: ff 2e 00 39 strb wzr, [x23, #11]
22c8: 1a 00 80 92 mov x26, #-1
22cc: 1c 00 13 cb sub x28, x0, x19
22d0: a0 06 40 f2 ands x0, x21, #0x3
22d4: 9c 23 00 91 add x28, x28, #8
22d8: da ba 00 b9 str w26, [x22, #184]
22dc: fc 23 00 b9 str w28, [sp, #32]
22e0: 80 bb ff 54 b.eq #-2192 <_lj_BC_RET+0x1c>
22e4: 7d ff ff 17 b #-524 <_lj_vm_return>
00000000000022e8 _lj_vm_pcall:
22e8: ff 43 03 d1 sub sp, sp, #208
22ec: fd 7b 0c a9 stp x29, x30, [sp, #192]
22f0: fd 03 00 91 mov x29, sp
22f4: f4 4f 0b a9 stp x20, x19, [sp, #176]
22f8: e9 23 06 6d stp d9, d8, [sp, #96]
22fc: f6 57 0a a9 stp x22, x21, [sp, #160]
2300: eb 2b 05 6d stp d11, d10, [sp, #80]
2304: f8 5f 09 a9 stp x24, x23, [sp, #144]
2308: ed 33 04 6d stp d13, d12, [sp, #64]
230c: fa 67 08 a9 stp x26, x25, [sp, #128]
2310: ef 3b 03 6d stp d15, d14, [sp, #48]
2314: fc 6f 07 a9 stp x28, x27, [sp, #112]
2318: b5 00 80 52 mov w21, #5
231c: e3 27 00 b9 str w3, [sp, #36]
2320: 0e 00 00 14 b #56 <_lj_vm_call+0x34>
0000000000002324 _lj_vm_call:
2324: ff 43 03 d1 sub sp, sp, #208
2328: fd 7b 0c a9 stp x29, x30, [sp, #192]
232c: fd 03 00 91 mov x29, sp
2330: f4 4f 0b a9 stp x20, x19, [sp, #176]
2334: e9 23 06 6d stp d9, d8, [sp, #96]
2338: f6 57 0a a9 stp x22, x21, [sp, #160]
233c: eb 2b 05 6d stp d11, d10, [sp, #80]
2340: f8 5f 09 a9 stp x24, x23, [sp, #144]
2344: ed 33 04 6d stp d13, d12, [sp, #64]
2348: fa 67 08 a9 stp x26, x25, [sp, #128]
234c: ef 3b 03 6d stp d15, d14, [sp, #48]
2350: fc 6f 07 a9 stp x28, x27, [sp, #112]
2354: 35 00 80 52 mov w21, #1
2358: 1c 28 40 f9 ldr x28, [x0, #80]
235c: e2 2b 00 b9 str w2, [sp, #40]
2360: f7 03 00 aa mov x23, x0
2364: e0 0b 00 f9 str x0, [sp, #16]
2368: f6 0a 40 f9 ldr x22, [x23, #16]
236c: f3 03 01 aa mov x19, x1
2370: e0 07 00 f9 str x0, [sp, #8]
2374: fc 03 00 f9 str x28, [sp]
2378: fd 2a 00 f9 str x29, [x23, #80]
237c: d7 ba 00 f9 str x23, [x22, #368]
2380: f1 02 42 a9 ldp x17, x0, [x23, #32]
2384: 38 ff ff d2 mov x24, #-1970324836974592
2388: 39 ff bf d2 mov x25, #4294508544
238c: b5 02 13 8b add x21, x21, x19
2390: 1a 00 80 92 mov x26, #-1
2394: b5 02 11 cb sub x21, x21, x17
2398: 1c 00 13 cb sub x28, x0, x19
239c: da ba 00 b9 str w26, [x22, #184]
00000000000023a0 _lj_vm_call_dispatch:
23a0: 62 02 5f f8 ldur x2, [x19, #-16]
23a4: 4f fc 6f 93 asr x15, x2, #47
23a8: ff 25 00 b1 cmn x15, #9
23ac: 42 b8 40 92 and x2, x2, #0x7fffffffffff
23b0: a1 1e 00 54 b.ne #980 <_lj_vmeta_call>
00000000000023b4 _lj_vm_call_dispatch_f:
23b4: 75 82 1f f8 stur x21, [x19, #-8]
23b8: 55 10 40 f9 ldr x21, [x2, #32]
23bc: b0 46 40 b8 ldr w16, [x21], #4
23c0: c9 0e 30 8b add x9, x22, w16, uxtb #3
23c4: 1b 3e 48 d3 ubfx x27, x16, #8, #8
23c8: 28 b5 47 f9 ldr x8, [x9, #3944]
23cc: 7b 0e 1b 8b add x27, x19, x27, lsl #3
23d0: 00 01 1f d6 br x8
00000000000023d4 _lj_vm_cpcall:
23d4: ff 43 03 d1 sub sp, sp, #208
23d8: fd 7b 0c a9 stp x29, x30, [sp, #192]
23dc: fd 03 00 91 mov x29, sp
23e0: f4 4f 0b a9 stp x20, x19, [sp, #176]
23e4: e9 23 06 6d stp d9, d8, [sp, #96]
23e8: f6 57 0a a9 stp x22, x21, [sp, #160]
23ec: eb 2b 05 6d stp d11, d10, [sp, #80]
23f0: f8 5f 09 a9 stp x24, x23, [sp, #144]
23f4: ed 33 04 6d stp d13, d12, [sp, #64]
23f8: fa 67 08 a9 stp x26, x25, [sp, #128]
23fc: ef 3b 03 6d stp d15, d14, [sp, #48]
2400: fc 6f 07 a9 stp x28, x27, [sp, #112]
2404: f7 03 00 aa mov x23, x0
2408: 1b 1c 40 f9 ldr x27, [x0, #56]
240c: e0 0b 00 f9 str x0, [sp, #16]
2410: f6 0a 40 f9 ldr x22, [x23, #16]
2414: f1 16 40 f9 ldr x17, [x23, #40]
2418: e0 07 00 f9 str x0, [sp, #8]
241c: fc 2a 40 f9 ldr x28, [x23, #80]
2420: 7b 03 11 cb sub x27, x27, x17
2424: fb 2b 00 b9 str w27, [sp, #40]
2428: ff 27 00 b9 str wzr, [sp, #36]
242c: fc 03 00 f9 str x28, [sp]
2430: fd 2a 00 f9 str x29, [x23, #80]
2434: d7 ba 00 f9 str x23, [x22, #368]
2438: 60 00 3f d6 blr x3
243c: f3 03 00 aa mov x19, x0
2440: b5 00 80 52 mov w21, #5
2444: d3 f9 ff b5 cbnz x19, #-200 <_lj_vm_call+0x58>
2448: 36 ff ff 17 b #-808 <_lj_vm_leave_cp>
000000000000244c _lj_cont_dispatch:
244c: 22 02 5f f8 ldur x2, [x17, #-16]
2450: 60 02 5e f8 ldur x0, [x19, #-32]
2454: e3 03 13 aa mov x3, x19
2458: f3 03 11 aa mov x19, x17
245c: 42 b8 40 92 and x2, x2, #0x7fffffffffff
2460: 1f 04 00 f1 cmp x0, #1
2464: 75 80 5e f8 ldur x21, [x3, #-24]
2468: 42 10 40 f9 ldr x2, [x2, #32]
246c: 68 03 1c 8b add x8, x27, x28
2470: 1a 81 1f f8 stur x26, [x8, #-8]
2474: 69 00 00 54 b.ls #12 <_lj_cont_dispatch+0x34>
2478: 54 80 5b f8 ldur x20, [x2, #-72]
247c: 00 00 1f d6 br x0
2480: c0 c0 00 54 b.eq #6168 <_lj_cont_ffi_callback>
2484: 63 80 00 d1 sub x3, x3, #32
2488: 7c 00 13 cb sub x28, x3, x19
248c: d4 04 00 14 b #4944 <_lj_vm_call_tail>
0000000000002490 _lj_cont_cat:
2490: b0 c2 5f b8 ldur w16, [x21, #-4]
2494: 61 80 00 d1 sub x1, x3, #32
2498: 68 03 40 f9 ldr x8, [x27]
249c: f3 12 00 f9 str x19, [x23, #32]
24a0: 11 7e 58 d3 ubfx x17, x16, #24, #8
24a4: 1b 3e 48 d3 ubfx x27, x16, #8, #8
24a8: 69 0e 11 8b add x9, x19, x17, lsl #3
24ac: 29 00 09 eb subs x9, x1, x9
24b0: 80 00 00 54 b.eq #16 <_lj_cont_cat+0x30>
24b4: 28 00 00 f9 str x8, [x1]
24b8: 22 fd 43 d3 lsr x2, x9, #3
24bc: 44 fa ff 17 b #-5872 <_lj_BC_CAT+0x14>
24c0: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
24c4: 69 00 00 14 b #420 <_lj_cont_nop>
00000000000024c8 _lj_vmeta_tgets1:
24c8: 83 00 80 92 mov x3, #-5
24cc: 61 0e 11 8b add x1, x19, x17, lsl #3
24d0: 83 bf 03 8b add x3, x28, x3, lsl #47
24d4: 04 00 00 14 b #16 <_lj_vmeta_tgets+0xc>
00000000000024d8 _lj_vmeta_tgets:
24d8: 41 ff ff f2 movk x1, #65530, lsl #48
24dc: c1 76 00 f9 str x1, [x22, #232]
24e0: c1 a2 03 91 add x1, x22, #232
24e4: e2 63 00 91 add x2, sp, #24
24e8: e3 0f 00 f9 str x3, [sp, #24]
24ec: 08 00 00 14 b #32 <_lj_vmeta_tgetv+0x8>
00000000000024f0 _lj_vmeta_tgetb:
24f0: 9c 03 18 8b add x28, x28, x24
24f4: 61 0e 11 8b add x1, x19, x17, lsl #3
24f8: e2 63 00 91 add x2, sp, #24
24fc: fc 0f 00 f9 str x28, [sp, #24]
2500: 03 00 00 14 b #12 <_lj_vmeta_tgetv+0x8>
0000000000002504 _lj_vmeta_tgetv:
2504: 61 0e 11 8b add x1, x19, x17, lsl #3
2508: 62 0e 1c 8b add x2, x19, x28, lsl #3
250c: f3 12 00 f9 str x19, [x23, #32]
2510: e0 03 17 aa mov x0, x23
2514: f5 07 00 f9 str x21, [sp, #8]
2518: 00 00 00 94 bl #0 <_lj_vmeta_tgetv+0x14>
251c: 20 01 00 b4 cbz x0, #36 <_lj_vmeta_tgetv+0x3c>
2520: 08 00 40 f9 ldr x8, [x0]
2524: 68 7a 3b f8 str x8, [x19, x27, lsl #3]
2528: b0 46 40 b8 ldr w16, [x21], #4
252c: c9 0e 30 8b add x9, x22, w16, uxtb #3
2530: 1b 3e 48 d3 ubfx x27, x16, #8, #8
2534: 28 b5 47 f9 ldr x8, [x9, #3944]
2538: 1c 7e 50 d3 ubfx x28, x16, #16, #16
253c: 00 01 1f d6 br x8
2540: 69 0a 00 d1 sub x9, x19, #2
2544: f3 16 40 f9 ldr x19, [x23, #40]
2548: 1c 02 80 52 mov w28, #16
254c: 62 02 5f f8 ldur x2, [x19, #-16]
2550: 75 82 1e f8 stur x21, [x19, #-24]
2554: 75 02 09 cb sub x21, x19, x9
2558: 42 b8 40 92 and x2, x2, #0x7fffffffffff
255c: 96 ff ff 17 b #-424 <_lj_vm_call_dispatch_f>
0000000000002560 _lj_vmeta_tgetr:
2560: 21 7d 40 93 sxtw x1, w9
2564: 00 00 00 94 bl #0 <_lj_vmeta_tgetr+0x4>
2568: e8 03 1a aa mov x8, x26
256c: c0 70 ff b4 cbz x0, #-4584 <_lj_BC_TGETR+0x2c>
2570: 08 00 40 f9 ldr x8, [x0]
2574: 84 fb ff 17 b #-4592 <_lj_BC_TGETR+0x2c>
0000000000002578 _lj_vmeta_tsets1:
2578: 83 00 80 92 mov x3, #-5
257c: 61 0e 11 8b add x1, x19, x17, lsl #3
2580: 83 bf 03 8b add x3, x28, x3, lsl #47
2584: 04 00 00 14 b #16 <_lj_vmeta_tsets+0xc>
0000000000002588 _lj_vmeta_tsets:
2588: 41 ff ff f2 movk x1, #65530, lsl #48
258c: c1 76 00 f9 str x1, [x22, #232]
2590: c1 a2 03 91 add x1, x22, #232
2594: e2 63 00 91 add x2, sp, #24
2598: e3 0f 00 f9 str x3, [sp, #24]
259c: 08 00 00 14 b #32 <_lj_vmeta_tsetv+0x8>
00000000000025a0 _lj_vmeta_tsetb:
25a0: 9c 03 18 8b add x28, x28, x24
25a4: 61 0e 11 8b add x1, x19, x17, lsl #3
25a8: e2 63 00 91 add x2, sp, #24
25ac: fc 0f 00 f9 str x28, [sp, #24]
25b0: 03 00 00 14 b #12 <_lj_vmeta_tsetv+0x8>
00000000000025b4 _lj_vmeta_tsetv:
25b4: 61 0e 11 8b add x1, x19, x17, lsl #3
25b8: 62 0e 1c 8b add x2, x19, x28, lsl #3
25bc: f3 12 00 f9 str x19, [x23, #32]
25c0: e0 03 17 aa mov x0, x23
25c4: f5 07 00 f9 str x21, [sp, #8]
25c8: 00 00 00 94 bl #0 <_lj_vmeta_tsetv+0x14>
25cc: 68 7a 7b f8 ldr x8, [x19, x27, lsl #3]
25d0: 00 01 00 b4 cbz x0, #32 <_lj_vmeta_tsetv+0x3c>
25d4: 08 00 00 f9 str x8, [x0]
25d8: b0 46 40 b8 ldr w16, [x21], #4
25dc: c9 0e 30 8b add x9, x22, w16, uxtb #3
25e0: 1b 3e 48 d3 ubfx x27, x16, #8, #8
25e4: 28 b5 47 f9 ldr x8, [x9, #3944]
25e8: 1c 7e 50 d3 ubfx x28, x16, #16, #16
25ec: 00 01 1f d6 br x8
25f0: 69 0a 00 d1 sub x9, x19, #2
25f4: f3 16 40 f9 ldr x19, [x23, #40]
25f8: 1c 03 80 52 mov w28, #24
25fc: 62 02 5f f8 ldur x2, [x19, #-16]
2600: 68 0a 00 f9 str x8, [x19, #16]
2604: 75 82 1e f8 stur x21, [x19, #-24]
2608: 75 02 09 cb sub x21, x19, x9
260c: 42 b8 40 92 and x2, x2, #0x7fffffffffff
2610: 69 ff ff 17 b #-604 <_lj_vm_call_dispatch_f>
0000000000002614 _lj_vmeta_tsetr:
2614: 22 7d 40 93 sxtw x2, w9
2618: f3 12 00 f9 str x19, [x23, #32]
261c: e0 03 17 aa mov x0, x23
2620: f5 07 00 f9 str x21, [sp, #8]
2624: 00 00 00 94 bl #0 <_lj_vmeta_tsetr+0x10>
2628: 1e fc ff 17 b #-3976 <_lj_BC_TSETR+0x30>
000000000000262c _lj_vmeta_comp:
262c: 61 0e 1b 8b add x1, x19, x27, lsl #3
2630: b5 12 00 d1 sub x21, x21, #4
2634: 62 0e 1c 8b add x2, x19, x28, lsl #3
2638: f3 12 00 f9 str x19, [x23, #32]
263c: e0 03 17 aa mov x0, x23
2640: f5 07 00 f9 str x21, [sp, #8]
2644: 03 1e 00 53 uxtb w3, w16
2648: 00 00 00 94 bl #0 <_lj_vmeta_comp+0x1c>
264c: 1f 04 00 f1 cmp x0, #1
2650: 28 08 00 54 b.hi #260 <_lj_vmeta_binop>
2654: b1 06 40 79 ldrh w17, [x21, #2]
2658: b5 12 00 91 add x21, x21, #4
265c: b1 0a 11 8b add x17, x21, x17, lsl #2
2660: 31 82 40 d1 sub x17, x17, #32, lsl #12
2664: b5 32 91 9a csel x21, x21, x17, lo
0000000000002668 _lj_cont_nop:
2668: b0 46 40 b8 ldr w16, [x21], #4
266c: c9 0e 30 8b add x9, x22, w16, uxtb #3
2670: 1b 3e 48 d3 ubfx x27, x16, #8, #8
2674: 28 b5 47 f9 ldr x8, [x9, #3944]
2678: 1c 7e 50 d3 ubfx x28, x16, #16, #16
267c: 00 01 1f d6 br x8
0000000000002680 _lj_cont_ra:
2680: b0 c2 5f b8 ldur w16, [x21, #-4]
2684: 68 03 40 f9 ldr x8, [x27]
2688: 09 3e 48 d3 ubfx x9, x16, #8, #8
268c: 68 7a 29 f8 str x8, [x19, x9, lsl #3]
2690: f6 ff ff 17 b #-40 <_lj_cont_nop>
0000000000002694 _lj_cont_condt:
2694: 68 03 40 f9 ldr x8, [x27]
2698: 29 00 e0 92 mov x9, #-281474976710657
269c: 3f 01 08 eb cmp x9, x8
26a0: ed ff ff 17 b #-76 <_lj_vmeta_comp+0x28>
00000000000026a4 _lj_cont_condf:
26a4: 68 03 40 f9 ldr x8, [x27]
26a8: 09 00 d0 92 mov x9, #-140737488355329
26ac: 1f 01 09 eb cmp x8, x9
26b0: e9 ff ff 17 b #-92 <_lj_vmeta_comp+0x28>
00000000000026b4 _lj_vmeta_equal:
26b4: 42 b8 40 92 and x2, x2, #0x7fffffffffff
26b8: b5 12 00 d1 sub x21, x21, #4
26bc: f3 12 00 f9 str x19, [x23, #32]
26c0: e0 03 17 aa mov x0, x23
26c4: f5 07 00 f9 str x21, [sp, #8]
26c8: 00 00 00 94 bl #0 <_lj_vmeta_equal+0x14>
26cc: e0 ff ff 17 b #-128 <_lj_vmeta_comp+0x20>
00000000000026d0 _lj_vmeta_equal_cd:
26d0: b5 12 00 d1 sub x21, x21, #4
26d4: f3 12 00 f9 str x19, [x23, #32]
26d8: e0 03 17 aa mov x0, x23
26dc: e1 03 10 aa mov x1, x16
26e0: f5 07 00 f9 str x21, [sp, #8]
26e4: 00 00 00 94 bl #0 <_lj_vmeta_equal_cd+0x14>
26e8: d9 ff ff 17 b #-156 <_lj_vmeta_comp+0x20>
00000000000026ec _lj_vmeta_istype:
26ec: b5 12 00 d1 sub x21, x21, #4
26f0: f3 12 00 f9 str x19, [x23, #32]
26f4: e0 03 17 aa mov x0, x23
26f8: e1 03 1b aa mov x1, x27
26fc: e2 03 1c aa mov x2, x28
2700: f5 07 00 f9 str x21, [sp, #8]
2704: 00 00 00 94 bl #0 <_lj_vmeta_istype+0x18>
2708: d8 ff ff 17 b #-160 <_lj_cont_nop>
000000000000270c _lj_vmeta_arith_vn:
270c: 62 0e 11 8b add x2, x19, x17, lsl #3
2710: 83 0e 1c 8b add x3, x20, x28, lsl #3
2714: 09 00 00 14 b #36 <_lj_vmeta_arith_vv+0x8>
0000000000002718 _lj_vmeta_arith_nv:
2718: 63 0e 11 8b add x3, x19, x17, lsl #3
271c: 82 0e 1c 8b add x2, x20, x28, lsl #3
2720: 06 00 00 14 b #24 <_lj_vmeta_arith_vv+0x8>
0000000000002724 _lj_vmeta_unm:
2724: 62 0e 1c 8b add x2, x19, x28, lsl #3
2728: e3 03 02 aa mov x3, x2
272c: 03 00 00 14 b #12 <_lj_vmeta_arith_vv+0x8>
0000000000002730 _lj_vmeta_arith_vv:
2730: 62 0e 11 8b add x2, x19, x17, lsl #3
2734: 63 0e 1c 8b add x3, x19, x28, lsl #3
2738: 04 1e 00 53 uxtb w4, w16
273c: 61 0e 1b 8b add x1, x19, x27, lsl #3
2740: f3 12 00 f9 str x19, [x23, #32]
2744: e0 03 17 aa mov x0, x23
2748: f5 07 00 f9 str x21, [sp, #8]
274c: 00 00 00 94 bl #0 <_lj_vmeta_arith_vv+0x1c>
2750: c0 f8 ff b4 cbz x0, #-232 <_lj_cont_nop>
0000000000002754 _lj_vmeta_binop:
2754: 09 00 13 cb sub x9, x0, x19
2758: 15 80 1e f8 stur x21, [x0, #-24]
275c: 35 09 00 91 add x21, x9, #2
2760: f3 03 00 aa mov x19, x0
2764: 1c 02 80 52 mov w28, #16
2768: 0e ff ff 17 b #-968 <_lj_vm_call_dispatch>
000000000000276c _lj_vmeta_len:
276c: 61 0e 1c 8b add x1, x19, x28, lsl #3
2770: f3 12 00 f9 str x19, [x23, #32]
2774: e0 03 17 aa mov x0, x23
2778: f5 07 00 f9 str x21, [sp, #8]
277c: 00 00 00 94 bl #0 <_lj_vmeta_len+0x10>
2780: f5 ff ff 17 b #-44 <_lj_vmeta_binop>
0000000000002784 _lj_vmeta_call:
2784: e0 03 17 aa mov x0, x23
2788: f1 12 00 f9 str x17, [x23, #32]
278c: 61 42 00 d1 sub x1, x19, #16
2790: f5 07 00 f9 str x21, [sp, #8]
2794: 62 02 1c 8b add x2, x19, x28
2798: 00 00 00 94 bl #0 <_lj_vmeta_call+0x14>
279c: 62 02 5f f8 ldur x2, [x19, #-16]
27a0: 9c 23 00 91 add x28, x28, #8
27a4: 42 b8 40 92 and x2, x2, #0x7fffffffffff
27a8: 75 82 1f f8 stur x21, [x19, #-8]
27ac: 55 10 40 f9 ldr x21, [x2, #32]
27b0: b0 46 40 b8 ldr w16, [x21], #4
27b4: c9 0e 30 8b add x9, x22, w16, uxtb #3
27b8: 1b 3e 48 d3 ubfx x27, x16, #8, #8
27bc: 28 b5 47 f9 ldr x8, [x9, #3944]
27c0: 7b 0e 1b 8b add x27, x19, x27, lsl #3
27c4: 00 01 1f d6 br x8
00000000000027c8 _lj_vmeta_callt:
27c8: e0 03 17 aa mov x0, x23
27cc: f3 12 00 f9 str x19, [x23, #32]
27d0: 61 43 00 d1 sub x1, x27, #16
27d4: f5 07 00 f9 str x21, [sp, #8]
27d8: 62 03 1c 8b add x2, x27, x28
27dc: 00 00 00 94 bl #0 <_lj_vmeta_callt+0x14>
27e0: 69 03 5f f8 ldur x9, [x27, #-16]
27e4: 75 82 5f f8 ldur x21, [x19, #-8]
27e8: 9c 23 00 91 add x28, x28, #8
27ec: 22 b9 40 92 and x2, x9, #0x7fffffffffff
27f0: dd fb ff 17 b #-4236 <_lj_BC_CALLT+0x28>
00000000000027f4 _lj_vmeta_for:
27f4: e0 03 17 aa mov x0, x23
27f8: f3 12 00 f9 str x19, [x23, #32]
27fc: e1 03 1b aa mov x1, x27
2800: f5 07 00 f9 str x21, [sp, #8]
2804: 00 00 00 94 bl #0 <_lj_vmeta_for+0x10>
2808: b0 c2 5f b8 ldur w16, [x21, #-4]
280c: 08 1e 00 53 uxtb w8, w16
2810: 1b 3e 48 d3 ubfx x27, x16, #8, #8
2814: 1c 7e 50 d3 ubfx x28, x16, #16, #16
2818: 1f 39 01 f1 cmp x8, #78
281c: 40 a1 ff 54 b.eq #-3032 <_lj_BC_JFORI>
2820: e5 fc ff 17 b #-3180 <_lj_BC_FORI>
0000000000002824 _lj_ff_assert:
2824: 60 02 40 f9 ldr x0, [x19]
2828: 9f 23 00 f1 cmp x28, #8
282c: e3 79 00 54 b.lo #3900 <_lj_fff_fallback>
2830: 75 82 5f f8 ldur x21, [x19, #-8]
2834: 09 00 d0 92 mov x9, #-140737488355329
2838: 1f 00 09 eb cmp x0, x9
283c: 62 79 00 54 b.hs #3884 <_lj_fff_fallback>
2840: 60 02 1f f8 stur x0, [x19, #-16]
2844: 71 22 00 d1 sub x17, x19, #8
2848: 9b 23 00 f1 subs x27, x28, #8
284c: 9c 23 00 91 add x28, x28, #8
2850: fb 32 00 b4 cbz x27, #1628 <_lj_fff_res>
2854: 20 0a 40 f9 ldr x0, [x17, #16]
2858: 7b 23 00 d1 sub x27, x27, #8
285c: 20 86 00 f8 str x0, [x17], #8
2860: bb ff ff b5 cbnz x27, #-12 <_lj_ff_assert+0x30>
2864: 92 01 00 14 b #1608 <_lj_fff_res>
0000000000002868 _lj_ff_type:
2868: 60 02 40 f9 ldr x0, [x19]
286c: 9f 23 00 f1 cmp x28, #8
2870: c3 77 00 54 b.lo #3832 <_lj_fff_fallback>
2874: a8 01 80 52 mov w8, #13
2878: 0f fc 6f 93 asr x15, x0, #47
287c: ff 35 00 b1 cmn x15, #13
2880: 09 31 8f da csinv x9, x8, x15, lo
2884: 29 19 00 91 add x9, x9, #6
2888: 40 78 69 f8 ldr x0, [x2, x9, lsl #3]
288c: 85 01 00 14 b #1556 <_lj_fff_restv>
0000000000002890 _lj_ff_getmetatable:
2890: 60 02 40 f9 ldr x0, [x19]
2894: 9f 23 00 f1 cmp x28, #8
2898: 83 76 00 54 b.lo #3792 <_lj_fff_fallback>
289c: 0f fc 6f 93 asr x15, x0, #47
28a0: ff 31 00 b1 cmn x15, #12
28a4: e4 19 4d ba ccmn x15, #13, #4, ne
28a8: 00 b8 40 92 and x0, x0, #0x7fffffffffff
28ac: 01 03 00 54 b.ne #96 <_lj_ff_getmetatable+0x7c>
28b0: 11 10 40 f9 ldr x17, [x0, #32]
28b4: e0 03 1a aa mov x0, x26
28b8: dc 1a 41 f9 ldr x28, [x22, #560]
28bc: 31 2f 00 b4 cbz x17, #1508 <_lj_fff_restv>
28c0: 29 36 40 b9 ldr w9, [x17, #52]
28c4: 8a 0f 40 b9 ldr w10, [x28, #12]
28c8: 22 16 40 f9 ldr x2, [x17, #40]
28cc: 29 01 0a 0a and w9, w9, w10
28d0: 29 05 09 8b add x9, x9, x9, lsl #1
28d4: 83 00 80 92 mov x3, #-5
28d8: 42 0c 09 8b add x2, x2, x9, lsl #3
28dc: 83 bf 03 8b add x3, x28, x3, lsl #47
28e0: 40 20 40 a9 ldp x0, x8, [x2]
28e4: 42 08 40 f9 ldr x2, [x2, #16]
28e8: 1f 01 03 eb cmp x8, x3
28ec: a0 00 00 54 b.eq #20 <_lj_ff_getmetatable+0x70>
28f0: 82 ff ff b5 cbnz x2, #-16 <_lj_ff_getmetatable+0x50>
28f4: e0 03 11 aa mov x0, x17
28f8: 40 ff ff f2 movk x0, #65530, lsl #48
28fc: 69 01 00 14 b #1444 <_lj_fff_restv>
2900: 1f 01 1a eb cmp x8, x26
2904: e1 2c 00 54 b.ne #1436 <_lj_fff_restv>
2908: fb ff ff 17 b #-20 <_lj_ff_getmetatable+0x64>
290c: a8 01 80 92 mov x8, #-14
2910: ff 01 08 eb cmp x15, x8
2914: ef 21 88 9a csel x15, x15, x8, hs
2918: c9 0e 0f cb sub x9, x22, x15, lsl #3
291c: 31 29 41 f9 ldr x17, [x9, #592]
2920: e5 ff ff 17 b #-108 <_lj_ff_getmetatable+0x24>
0000000000002924 _lj_ff_setmetatable:
2924: 60 06 40 a9 ldp x0, x1, [x19]
2928: 9f 43 00 f1 cmp x28, #16
292c: e3 71 00 54 b.lo #3644 <_lj_fff_fallback>
2930: 0f fc 6f 93 asr x15, x0, #47
2934: ff 31 00 b1 cmn x15, #12
2938: 09 b8 40 92 and x9, x0, #0x7fffffffffff
293c: 61 71 00 54 b.ne #3628 <_lj_fff_fallback>
2940: 28 11 40 f9 ldr x8, [x9, #32]
2944: 2f fc 6f 93 asr x15, x1, #47
2948: 2a 21 40 39 ldrb w10, [x9, #8]
294c: ff 31 00 b1 cmn x15, #12
2950: 21 b8 40 92 and x1, x1, #0x7fffffffffff
2954: 00 09 40 fa ccmp x8, #0, #0, eq
2958: 81 70 00 54 b.ne #3600 <_lj_fff_fallback>
295c: 21 11 00 f9 str x1, [x9, #32]
2960: 0a 2a 10 36 tbz w10, #2, #1344 <_lj_fff_restv>
2964: c8 22 40 f9 ldr x8, [x22, #64]
2968: 4a 79 1d 12 and w10, w10, #0xfffffffb
296c: c9 22 00 f9 str x9, [x22, #64]
2970: 2a 21 00 39 strb w10, [x9, #8]
2974: 28 0d 00 f9 str x8, [x9, #24]
2978: 4a 01 00 14 b #1320 <_lj_fff_restv>
000000000000297c _lj_ff_rawget:
297c: 61 02 40 f9 ldr x1, [x19]
2980: 9f 43 00 f1 cmp x28, #16
2984: 23 6f 00 54 b.lo #3556 <_lj_fff_fallback>
2988: 2f fc 6f 93 asr x15, x1, #47
298c: ff 31 00 b1 cmn x15, #12
2990: 21 b8 40 92 and x1, x1, #0x7fffffffffff
2994: a1 6e 00 54 b.ne #3540 <_lj_fff_fallback>
2998: e0 03 17 aa mov x0, x23
299c: 62 22 00 91 add x2, x19, #8
29a0: 00 00 00 94 bl #0 <_lj_ff_rawget+0x24>
29a4: 00 00 40 f9 ldr x0, [x0]
29a8: 3e 01 00 14 b #1272 <_lj_fff_restv>
00000000000029ac _lj_ff_tonumber:
29ac: 60 02 40 f9 ldr x0, [x19]
29b0: 9f 23 00 f1 cmp x28, #8
29b4: a1 6d 00 54 b.ne #3508 <_lj_fff_fallback>
29b8: 3f 83 40 eb cmp x25, x0, lsr #32
29bc: 63 6d 00 54 b.lo #3500 <_lj_fff_fallback>
29c0: 38 01 00 14 b #1248 <_lj_fff_restv>
00000000000029c4 _lj_ff_tostring:
29c4: 60 02 40 f9 ldr x0, [x19]
29c8: 9f 23 00 f1 cmp x28, #8
29cc: e3 6c 00 54 b.lo #3484 <_lj_fff_fallback>
29d0: 0f fc 6f 93 asr x15, x0, #47
29d4: ff 15 00 b1 cmn x15, #5
29d8: 40 26 00 54 b.eq #1224 <_lj_fff_restv>
29dc: c9 62 41 f9 ldr x9, [x22, #704]
29e0: f3 12 00 f9 str x19, [x23, #32]
29e4: ff 39 00 b1 cmn x15, #14
29e8: 20 99 40 fa ccmp x9, #0, #0, ls
29ec: f5 07 00 f9 str x21, [sp, #8]
29f0: c1 6b 00 54 b.ne #3448 <_lj_fff_fallback>
29f4: c0 06 41 a9 ldp x0, x1, [x22, #16]
29f8: 1f 00 01 eb cmp x0, x1
29fc: 4b 00 00 54 b.lt #8 <_lj_ff_tostring+0x40>
2a00: 84 03 00 94 bl #3600 <_lj_fff_gcstep>
2a04: e0 03 17 aa mov x0, x23
2a08: e1 03 13 aa mov x1, x19
2a0c: 00 00 00 94 bl #0 <_lj_ff_tostring+0x48>
2a10: 89 00 80 92 mov x9, #-5
2a14: f3 12 40 f9 ldr x19, [x23, #32]
2a18: 00 bc 09 8b add x0, x0, x9, lsl #47
2a1c: 21 01 00 14 b #1156 <_lj_fff_restv>
0000000000002a20 _lj_ff_next:
2a20: 60 02 40 f9 ldr x0, [x19]
2a24: 9f 23 00 f1 cmp x28, #8
2a28: 03 6a 00 54 b.lo #3392 <_lj_fff_fallback>
2a2c: 0f fc 6f 93 asr x15, x0, #47
2a30: ff 31 00 b1 cmn x15, #12
2a34: 01 b8 40 92 and x1, x0, #0x7fffffffffff
2a38: 81 69 00 54 b.ne #3376 <_lj_fff_fallback>
2a3c: 7a 6a 3c f8 str x26, [x19, x28]
2a40: 75 82 5f f8 ldur x21, [x19, #-8]
2a44: f3 4e 02 a9 stp x19, x19, [x23, #32]
2a48: e0 03 17 aa mov x0, x23
2a4c: 62 22 00 91 add x2, x19, #8
2a50: f5 07 00 f9 str x21, [sp, #8]
2a54: 00 00 00 94 bl #0 <_lj_ff_next+0x34>
2a58: 7a 02 1f f8 stur x26, [x19, #-16]
2a5c: 60 22 00 b4 cbz x0, #1100 <_lj_fff_res1>
2a60: 60 86 40 a9 ldp x0, x1, [x19, #8]
2a64: 1c 03 80 52 mov w28, #24
2a68: 60 06 3f a9 stp x0, x1, [x19, #-16]
2a6c: 10 01 00 14 b #1088 <_lj_fff_res>
0000000000002a70 _lj_ff_pairs:
2a70: 60 02 40 f9 ldr x0, [x19]
2a74: 9f 23 00 f1 cmp x28, #8
2a78: 83 67 00 54 b.lo #3312 <_lj_fff_fallback>
2a7c: 0f fc 6f 93 asr x15, x0, #47
2a80: ff 31 00 b1 cmn x15, #12
2a84: 09 b8 40 92 and x9, x0, #0x7fffffffffff
2a88: 01 67 00 54 b.ne #3296 <_lj_fff_fallback>
2a8c: 43 18 40 f9 ldr x3, [x2, #48]
2a90: 75 82 5f f8 ldur x21, [x19, #-8]
2a94: 1c 04 80 52 mov w28, #32
2a98: 60 ea 3f a9 stp x0, x26, [x19, #-8]
2a9c: 63 02 1f f8 stur x3, [x19, #-16]
2aa0: 03 01 00 14 b #1036 <_lj_fff_res>
0000000000002aa4 _lj_ff_ipairs_aux:
2aa4: 60 06 40 a9 ldp x0, x1, [x19]
2aa8: 9f 43 00 f1 cmp x28, #16
2aac: e3 65 00 54 b.lo #3260 <_lj_fff_fallback>
2ab0: 0f fc 6f 93 asr x15, x0, #47
2ab4: ff 31 00 b1 cmn x15, #12
2ab8: 00 b8 40 92 and x0, x0, #0x7fffffffffff
2abc: 61 65 00 54 b.ne #3244 <_lj_fff_fallback>
2ac0: 3f 83 41 eb cmp x25, x1, lsr #32
2ac4: 21 65 00 54 b.ne #3236 <_lj_fff_fallback>
2ac8: 09 30 40 b9 ldr w9, [x0, #48]
2acc: 02 08 40 f9 ldr x2, [x0, #16]
2ad0: 08 34 40 b9 ldr w8, [x0, #52]
2ad4: 21 04 00 11 add w1, w1, #1
2ad8: 3f 00 09 6b cmp w1, w9
2adc: 75 82 5f f8 ldur x21, [x19, #-8]
2ae0: 2a 00 18 8b add x10, x1, x24
2ae4: 1c 01 80 52 mov w28, #8
2ae8: 6a 02 1f f8 stur x10, [x19, #-16]
2aec: e2 00 00 54 b.hs #28 <_lj_ff_ipairs_aux+0x64>
2af0: 48 78 61 f8 ldr x8, [x2, x1, lsl #3]
2af4: 09 03 80 52 mov w9, #24
2af8: 1f 01 1a eb cmp x8, x26
2afc: 68 82 1f f8 stur x8, [x19, #-8]
2b00: 9c 03 89 9a csel x28, x28, x9, eq
2b04: ea 00 00 14 b #936 <_lj_fff_res>
2b08: 28 1d 00 34 cbz w8, #932 <_lj_fff_res>
2b0c: 00 00 00 94 bl #0 <_lj_ff_ipairs_aux+0x68>
2b10: e0 1c 00 b4 cbz x0, #924 <_lj_fff_res>
2b14: 08 00 40 f9 ldr x8, [x0]
2b18: f7 ff ff 17 b #-36 <_lj_ff_ipairs_aux+0x50>
0000000000002b1c _lj_ff_ipairs:
2b1c: 60 02 40 f9 ldr x0, [x19]
2b20: 9f 23 00 f1 cmp x28, #8
2b24: 23 62 00 54 b.lo #3140 <_lj_fff_fallback>
2b28: 0f fc 6f 93 asr x15, x0, #47
2b2c: ff 31 00 b1 cmn x15, #12
2b30: 09 b8 40 92 and x9, x0, #0x7fffffffffff
2b34: a1 61 00 54 b.ne #3124 <_lj_fff_fallback>
2b38: 43 18 40 f9 ldr x3, [x2, #48]
2b3c: 75 82 5f f8 ldur x21, [x19, #-8]
2b40: 1c 04 80 52 mov w28, #32
2b44: 60 e2 3f a9 stp x0, x24, [x19, #-8]
2b48: 63 02 1f f8 stur x3, [x19, #-16]
2b4c: d8 00 00 14 b #864 <_lj_fff_res>
0000000000002b50 _lj_ff_pcall:
2b50: c8 46 42 39 ldrb w8, [x22, #145]
2b54: 9c 23 00 f1 subs x28, x28, #8
2b58: 83 60 00 54 b.lo #3088 <_lj_fff_fallback>
2b5c: f1 03 13 aa mov x17, x19
2b60: 73 42 00 91 add x19, x19, #16
2b64: 08 11 04 53 ubfx w8, w8, #4, #1
2b68: 15 59 00 91 add x21, x8, #22
2b6c: a0 c1 ff 54 b.eq #-1996 <_lj_vm_call_dispatch>
2b70: 6a 02 1c 8b add x10, x19, x28
2b74: 48 01 5f f8 ldur x8, [x10, #-16]
2b78: 48 8d 1f f8 str x8, [x10, #-8]!
2b7c: 5f 01 13 eb cmp x10, x19
2b80: a1 ff ff 54 b.ne #-12 <_lj_ff_pcall+0x24>
2b84: 07 fe ff 17 b #-2020 <_lj_vm_call_dispatch>
0000000000002b88 _lj_ff_xpcall:
2b88: 60 06 40 a9 ldp x0, x1, [x19]
2b8c: c8 46 42 39 ldrb w8, [x22, #145]
2b90: 89 43 00 f1 subs x9, x28, #16
2b94: a3 5e 00 54 b.lo #3028 <_lj_fff_fallback>
2b98: f1 03 13 aa mov x17, x19
2b9c: 2f fc 6f 93 asr x15, x1, #47
2ba0: 08 11 04 53 ubfx w8, w8, #4, #1
2ba4: ff 25 00 b1 cmn x15, #9
2ba8: 15 79 00 91 add x21, x8, #30
2bac: e1 5d 00 54 b.ne #3004 <_lj_fff_fallback>
2bb0: fc 03 09 aa mov x28, x9
2bb4: 73 62 00 91 add x19, x19, #24
2bb8: 21 02 00 a9 stp x1, x0, [x17]
2bbc: 3c bf ff b4 cbz x28, #-2076 <_lj_vm_call_dispatch>
2bc0: ec ff ff 17 b #-80 <_lj_ff_pcall+0x20>
0000000000002bc4 _lj_ff_coroutine_resume:
2bc4: 60 02 40 f9 ldr x0, [x19]
2bc8: 9f 23 00 f1 cmp x28, #8
2bcc: e3 5c 00 54 b.lo #2972 <_lj_fff_fallback>
2bd0: 0f fc 6f 93 asr x15, x0, #47
2bd4: ff 1d 00 b1 cmn x15, #7
2bd8: 00 b8 40 92 and x0, x0, #0x7fffffffffff
2bdc: 61 5c 00 54 b.ne #2956 <_lj_fff_fallback>
2be0: 75 82 5f f8 ldur x21, [x19, #-8]
2be4: f3 12 00 f9 str x19, [x23, #32]
2be8: 11 04 42 a9 ldp x17, x1, [x0, #32]
2bec: 09 2c 40 39 ldrb w9, [x0, #11]
2bf0: 28 00 09 8b add x8, x1, x9
2bf4: f5 07 00 f9 str x21, [sp, #8]
2bf8: 1f 01 11 eb cmp x8, x17
2bfc: 60 5b 00 54 b.eq #2924 <_lj_fff_fallback>
2c00: 3f 05 00 f1 cmp x9, #1
2c04: 28 20 00 91 add x8, x1, #8
2c08: 21 20 88 9a csel x1, x1, x8, hs
2c0c: 03 18 40 f9 ldr x3, [x0, #48]
2c10: 22 00 1c 8b add x2, x1, x28
2c14: 11 28 40 f9 ldr x17, [x0, #80]
2c18: 42 90 43 fa ccmp x2, x3, #2, ls
2c1c: 22 9a 40 fa ccmp x17, #0, #2, ls
2c20: 48 5a 00 54 b.hi #2888 <_lj_fff_fallback>
2c24: 42 20 00 d1 sub x2, x2, #8
2c28: 73 22 00 91 add x19, x19, #8
2c2c: 9c 23 00 d1 sub x28, x28, #8
2c30: 02 14 00 f9 str x2, [x0, #40]
2c34: f3 16 00 f9 str x19, [x23, #40]
2c38: dc 00 00 b4 cbz x28, #24 <_lj_ff_coroutine_resume+0x8c>
2c3c: 68 6a 71 f8 ldr x8, [x19, x17]
2c40: 3f 02 1c eb cmp x17, x28
2c44: 28 68 31 f8 str x8, [x1, x17]
2c48: 31 22 00 91 add x17, x17, #8
2c4c: 81 ff ff 54 b.ne #-16 <_lj_ff_coroutine_resume+0x78>
2c50: 02 00 80 52 mov w2, #0
2c54: fb 03 00 aa mov x27, x0
2c58: 03 00 80 52 mov w3, #0
2c5c: 7b fd ff 97 bl #-2580 <_lj_vm_resume>
2c60: 62 0f 42 a9 ldp x2, x3, [x27, #32]
2c64: 1f 04 00 f1 cmp x0, #1
2c68: f3 12 40 f9 ldr x19, [x23, #32]
2c6c: d7 ba 00 f9 str x23, [x22, #368]
2c70: da ba 00 b9 str w26, [x22, #184]
2c74: 08 03 00 54 b.hi #96 <_lj_ff_coroutine_resume+0x110>
2c78: 7c 00 02 cb sub x28, x3, x2
2c7c: e0 1a 40 f9 ldr x0, [x23, #48]
2c80: 61 02 1c 8b add x1, x19, x28
2c84: 7c 01 00 b4 cbz x28, #44 <_lj_ff_coroutine_resume+0xec>
2c88: 3f 00 00 eb cmp x1, x0
2c8c: 11 00 80 52 mov w17, #0
2c90: e8 02 00 54 b.hi #92 <_lj_ff_coroutine_resume+0x128>
2c94: 83 23 00 d1 sub x3, x28, #8
2c98: 62 17 00 f9 str x2, [x27, #40]
2c9c: 48 68 71 f8 ldr x8, [x2, x17]
2ca0: 3f 02 03 eb cmp x17, x3
2ca4: 68 6a 31 f8 str x8, [x19, x17]
2ca8: 31 22 00 91 add x17, x17, #8
2cac: 81 ff ff 54 b.ne #-16 <_lj_ff_coroutine_resume+0xd8>
2cb0: 29 00 e0 92 mov x9, #-281474976710657
2cb4: 9c 43 00 91 add x28, x28, #16
2cb8: 69 82 1f f8 stur x9, [x19, #-8]
2cbc: 7b 22 00 d1 sub x27, x19, #8
2cc0: a0 06 40 f2 ands x0, x21, #0x3
2cc4: f5 07 00 f9 str x21, [sp, #8]
2cc8: fc 23 00 b9 str w28, [sp, #32]
2ccc: 20 6c ff 54 b.eq #-4732 <_lj_BC_RET+0x1c>
2cd0: 02 fd ff 17 b #-3064 <_lj_vm_return>
2cd4: 68 8c 5f f8 ldr x8, [x3, #-8]!
2cd8: 09 00 d0 92 mov x9, #-140737488355329
2cdc: 1c 03 80 52 mov w28, #24
2ce0: 63 17 00 f9 str x3, [x27, #40]
2ce4: 68 02 00 f9 str x8, [x19]
2ce8: f4 ff ff 17 b #-48 <_lj_ff_coroutine_resume+0xf4>
2cec: e0 03 17 aa mov x0, x23
2cf0: 81 ff 43 d3 lsr x1, x28, #3
2cf4: 00 00 00 94 bl #0 <_lj_ff_coroutine_resume+0x130>
2cf8: 00 00 80 52 mov w0, #0
2cfc: d9 ff ff 17 b #-156 <_lj_ff_coroutine_resume+0x9c>
0000000000002d00 _lj_ff_coroutine_wrap_aux:
2d00: 40 18 40 f9 ldr x0, [x2, #48]
2d04: 00 b8 40 92 and x0, x0, #0x7fffffffffff
2d08: 75 82 5f f8 ldur x21, [x19, #-8]
2d0c: f3 12 00 f9 str x19, [x23, #32]
2d10: 11 04 42 a9 ldp x17, x1, [x0, #32]
2d14: 09 2c 40 39 ldrb w9, [x0, #11]
2d18: 28 00 09 8b add x8, x1, x9
2d1c: f5 07 00 f9 str x21, [sp, #8]
2d20: 1f 01 11 eb cmp x8, x17
2d24: 20 52 00 54 b.eq #2628 <_lj_fff_fallback>
2d28: 3f 05 00 f1 cmp x9, #1
2d2c: 28 20 00 91 add x8, x1, #8
2d30: 21 20 88 9a csel x1, x1, x8, hs
2d34: 03 18 40 f9 ldr x3, [x0, #48]
2d38: 22 00 1c 8b add x2, x1, x28
2d3c: 11 28 40 f9 ldr x17, [x0, #80]
2d40: 42 90 43 fa ccmp x2, x3, #2, ls
2d44: 22 9a 40 fa ccmp x17, #0, #2, ls
2d48: 08 51 00 54 b.hi #2592 <_lj_fff_fallback>
2d4c: 02 14 00 f9 str x2, [x0, #40]
2d50: f3 16 00 f9 str x19, [x23, #40]
2d54: dc 00 00 b4 cbz x28, #24 <_lj_ff_coroutine_wrap_aux+0x6c>
2d58: 68 6a 71 f8 ldr x8, [x19, x17]
2d5c: 3f 02 1c eb cmp x17, x28
2d60: 28 68 31 f8 str x8, [x1, x17]
2d64: 31 22 00 91 add x17, x17, #8
2d68: 81 ff ff 54 b.ne #-16 <_lj_ff_coroutine_wrap_aux+0x58>
2d6c: 02 00 80 52 mov w2, #0
2d70: fb 03 00 aa mov x27, x0
2d74: 03 00 80 52 mov w3, #0
2d78: 34 fd ff 97 bl #-2864 <_lj_vm_resume>
2d7c: 62 0f 42 a9 ldp x2, x3, [x27, #32]
2d80: 1f 04 00 f1 cmp x0, #1
2d84: f3 12 40 f9 ldr x19, [x23, #32]
2d88: d7 ba 00 f9 str x23, [x22, #368]
2d8c: da ba 00 b9 str w26, [x22, #184]
2d90: c8 02 00 54 b.hi #88 <_lj_ff_coroutine_wrap_aux+0xe8>
2d94: 7c 00 02 cb sub x28, x3, x2
2d98: e0 1a 40 f9 ldr x0, [x23, #48]
2d9c: 61 02 1c 8b add x1, x19, x28
2da0: 7c 01 00 b4 cbz x28, #44 <_lj_ff_coroutine_wrap_aux+0xcc>
2da4: 3f 00 00 eb cmp x1, x0
2da8: 11 00 80 52 mov w17, #0
2dac: 48 02 00 54 b.hi #72 <_lj_ff_coroutine_wrap_aux+0xf4>
2db0: 83 23 00 d1 sub x3, x28, #8
2db4: 62 17 00 f9 str x2, [x27, #40]
2db8: 48 68 71 f8 ldr x8, [x2, x17]
2dbc: 3f 02 03 eb cmp x17, x3
2dc0: 68 6a 31 f8 str x8, [x19, x17]
2dc4: 31 22 00 91 add x17, x17, #8
2dc8: 81 ff ff 54 b.ne #-16 <_lj_ff_coroutine_wrap_aux+0xb8>
2dcc: fb 03 13 aa mov x27, x19
2dd0: 9c 23 00 91 add x28, x28, #8
2dd4: a0 06 40 f2 ands x0, x21, #0x3
2dd8: f5 07 00 f9 str x21, [sp, #8]
2ddc: fc 23 00 b9 str w28, [sp, #32]
2de0: 80 63 ff 54 b.eq #-5008 <_lj_BC_RET+0x1c>
2de4: bd fc ff 17 b #-3340 <_lj_vm_return>
2de8: e0 03 17 aa mov x0, x23
2dec: e1 03 1b aa mov x1, x27
2df0: 00 00 00 94 bl #0 <_lj_ff_coroutine_wrap_aux+0xf0>
2df4: e0 03 17 aa mov x0, x23
2df8: 81 ff 43 d3 lsr x1, x28, #3
2dfc: 00 00 00 94 bl #0 <_lj_ff_coroutine_wrap_aux+0xfc>
2e00: 00 00 80 52 mov w0, #0
2e04: de ff ff 17 b #-136 <_lj_ff_coroutine_wrap_aux+0x7c>
0000000000002e08 _lj_ff_coroutine_yield:
2e08: e8 2a 40 f9 ldr x8, [x23, #80]
2e0c: 69 02 1c 8b add x9, x19, x28
2e10: 20 00 80 52 mov w0, #1
2e14: f3 26 02 a9 stp x19, x9, [x23, #32]
2e18: 88 4a 00 36 tbz w8, #0, #2384 <_lj_fff_fallback>
2e1c: ff 2a 00 f9 str xzr, [x23, #80]
2e20: e0 2e 00 39 strb w0, [x23, #11]
2e24: c2 fc ff 17 b #-3320 <_lj_vm_leave_unw>
0000000000002e28 _lj_ff_math_floor:
2e28: 60 02 40 f9 ldr x0, [x19]
2e2c: 9f 23 00 f1 cmp x28, #8
2e30: 60 02 40 fd ldr d0, [x19]
2e34: a3 49 00 54 b.lo #2356 <_lj_fff_fallback>
2e38: 3f 83 40 eb cmp x25, x0, lsr #32
2e3c: 20 03 00 54 b.eq #100 <_lj_fff_restv>
2e40: 43 49 00 54 b.lo #2344 <_lj_fff_fallback>
2e44: 00 40 65 1e frintm d0, d0
2e48: 34 00 00 14 b #208 <_lj_fff_resn>
0000000000002e4c _lj_ff_math_ceil:
2e4c: 60 02 40 f9 ldr x0, [x19]
2e50: 9f 23 00 f1 cmp x28, #8
2e54: 60 02 40 fd ldr d0, [x19]
2e58: 83 48 00 54 b.lo #2320 <_lj_fff_fallback>
2e5c: 3f 83 40 eb cmp x25, x0, lsr #32
2e60: 00 02 00 54 b.eq #64 <_lj_fff_restv>
2e64: 23 48 00 54 b.lo #2308 <_lj_fff_fallback>
2e68: 00 c0 64 1e frintp d0, d0
2e6c: 2b 00 00 14 b #172 <_lj_fff_resn>
0000000000002e70 _lj_ff_math_abs:
2e70: 60 02 40 f9 ldr x0, [x19]
2e74: 9f 23 00 f1 cmp x28, #8
2e78: 83 47 00 54 b.lo #2288 <_lj_fff_fallback>
2e7c: 3f 83 40 eb cmp x25, x0, lsr #32
2e80: 43 47 00 54 b.lo #2280 <_lj_fff_fallback>
2e84: 00 f8 40 92 and x0, x0, #0x7fffffffffffffff
2e88: c1 00 00 54 b.ne #24 <_lj_fff_restv>
2e8c: 01 7c 80 4a eor w1, w0, w0, asr #31
2e90: 02 3c e8 d2 mov x2, #4746794007248502784
2e94: 20 7c 80 6b subs w0, w1, w0, asr #31
2e98: 00 00 18 8b add x0, x0, x24
2e9c: 00 50 82 9a csel x0, x0, x2, pl
0000000000002ea0 _lj_fff_restv:
2ea0: 75 82 5f f8 ldur x21, [x19, #-8]
2ea4: 60 02 1f f8 stur x0, [x19, #-16]
0000000000002ea8 _lj_fff_res1:
2ea8: 1c 02 80 52 mov w28, #16
0000000000002eac _lj_fff_res:
2eac: a0 06 40 f2 ands x0, x21, #0x3
2eb0: fc 23 00 b9 str w28, [sp, #32]
2eb4: 7b 42 00 d1 sub x27, x19, #16
2eb8: 01 91 ff 54 b.ne #-3552 <_lj_vm_return>
2ebc: b0 c2 5f b8 ldur w16, [x21, #-4]
2ec0: 11 7e 58 d3 ubfx x17, x16, #24, #8
2ec4: 9f 0f 11 eb cmp x28, x17, lsl #3
2ec8: 23 01 00 54 b.lo #36 <_lj_fff_res+0x40>
2ecc: 09 3e 48 d3 ubfx x9, x16, #8, #8
2ed0: 73 0f 09 cb sub x19, x27, x9, lsl #3
2ed4: b0 46 40 b8 ldr w16, [x21], #4
2ed8: c9 0e 30 8b add x9, x22, w16, uxtb #3
2edc: 1b 3e 48 d3 ubfx x27, x16, #8, #8
2ee0: 28 b5 47 f9 ldr x8, [x9, #3944]
2ee4: 1c 7e 50 d3 ubfx x28, x16, #16, #16
2ee8: 00 01 1f d6 br x8
2eec: 69 03 1c 8b add x9, x27, x28
2ef0: 9c 23 00 91 add x28, x28, #8
2ef4: 3a 81 1f f8 stur x26, [x9, #-8]
2ef8: f3 ff ff 17 b #-52 <_lj_fff_res+0x18>
0000000000002efc _lj_ff_math_sqrt:
2efc: 60 02 40 f9 ldr x0, [x19]
2f00: 9f 23 00 f1 cmp x28, #8
2f04: 60 02 40 fd ldr d0, [x19]
2f08: 03 43 00 54 b.lo #2144 <_lj_fff_fallback>
2f0c: 3f 83 40 eb cmp x25, x0, lsr #32
2f10: c9 42 00 54 b.ls #2136 <_lj_fff_fallback>
2f14: 00 c0 61 1e fsqrt d0, d0
0000000000002f18 _lj_fff_resn:
2f18: 75 82 5f f8 ldur x21, [x19, #-8]
2f1c: 60 02 1f fc stur d0, [x19, #-16]
2f20: e2 ff ff 17 b #-120 <_lj_fff_res1>
0000000000002f24 _lj_ff_math_log:
2f24: 60 02 40 f9 ldr x0, [x19]
2f28: 9f 23 00 f1 cmp x28, #8
2f2c: 60 02 40 fd ldr d0, [x19]
2f30: c1 41 00 54 b.ne #2104 <_lj_fff_fallback>
2f34: 3f 83 40 eb cmp x25, x0, lsr #32
2f38: 89 41 00 54 b.ls #2096 <_lj_fff_fallback>
2f3c: 00 00 00 94 bl #0 <_lj_ff_math_log+0x18>
2f40: f6 ff ff 17 b #-40 <_lj_fff_resn>
0000000000002f44 _lj_ff_math_log10:
2f44: 60 02 40 f9 ldr x0, [x19]
2f48: 9f 23 00 f1 cmp x28, #8
2f4c: 60 02 40 fd ldr d0, [x19]
2f50: c3 40 00 54 b.lo #2072 <_lj_fff_fallback>
2f54: 3f 83 40 eb cmp x25, x0, lsr #32
2f58: 89 40 00 54 b.ls #2064 <_lj_fff_fallback>
2f5c: 00 00 00 94 bl #0 <_lj_ff_math_log10+0x18>
2f60: ee ff ff 17 b #-72 <_lj_fff_resn>
0000000000002f64 _lj_ff_math_exp:
2f64: 60 02 40 f9 ldr x0, [x19]
2f68: 9f 23 00 f1 cmp x28, #8
2f6c: 60 02 40 fd ldr d0, [x19]
2f70: c3 3f 00 54 b.lo #2040 <_lj_fff_fallback>
2f74: 3f 83 40 eb cmp x25, x0, lsr #32
2f78: 89 3f 00 54 b.ls #2032 <_lj_fff_fallback>
2f7c: 00 00 00 94 bl #0 <_lj_ff_math_exp+0x18>
2f80: e6 ff ff 17 b #-104 <_lj_fff_resn>
0000000000002f84 _lj_ff_math_sin:
2f84: 60 02 40 f9 ldr x0, [x19]
2f88: 9f 23 00 f1 cmp x28, #8
2f8c: 60 02 40 fd ldr d0, [x19]
2f90: c3 3e 00 54 b.lo #2008 <_lj_fff_fallback>
2f94: 3f 83 40 eb cmp x25, x0, lsr #32
2f98: 89 3e 00 54 b.ls #2000 <_lj_fff_fallback>
2f9c: 00 00 00 94 bl #0 <_lj_ff_math_sin+0x18>
2fa0: de ff ff 17 b #-136 <_lj_fff_resn>
0000000000002fa4 _lj_ff_math_cos:
2fa4: 60 02 40 f9 ldr x0, [x19]
2fa8: 9f 23 00 f1 cmp x28, #8
2fac: 60 02 40 fd ldr d0, [x19]
2fb0: c3 3d 00 54 b.lo #1976 <_lj_fff_fallback>
2fb4: 3f 83 40 eb cmp x25, x0, lsr #32
2fb8: 89 3d 00 54 b.ls #1968 <_lj_fff_fallback>
2fbc: 00 00 00 94 bl #0 <_lj_ff_math_cos+0x18>
2fc0: d6 ff ff 17 b #-168 <_lj_fff_resn>
0000000000002fc4 _lj_ff_math_tan:
2fc4: 60 02 40 f9 ldr x0, [x19]
2fc8: 9f 23 00 f1 cmp x28, #8
2fcc: 60 02 40 fd ldr d0, [x19]
2fd0: c3 3c 00 54 b.lo #1944 <_lj_fff_fallback>
2fd4: 3f 83 40 eb cmp x25, x0, lsr #32
2fd8: 89 3c 00 54 b.ls #1936 <_lj_fff_fallback>
2fdc: 00 00 00 94 bl #0 <_lj_ff_math_tan+0x18>
2fe0: ce ff ff 17 b #-200 <_lj_fff_resn>
0000000000002fe4 _lj_ff_math_asin:
2fe4: 60 02 40 f9 ldr x0, [x19]
2fe8: 9f 23 00 f1 cmp x28, #8
2fec: 60 02 40 fd ldr d0, [x19]
2ff0: c3 3b 00 54 b.lo #1912 <_lj_fff_fallback>
2ff4: 3f 83 40 eb cmp x25, x0, lsr #32
2ff8: 89 3b 00 54 b.ls #1904 <_lj_fff_fallback>
2ffc: 00 00 00 94 bl #0 <_lj_ff_math_asin+0x18>
3000: c6 ff ff 17 b #-232 <_lj_fff_resn>
0000000000003004 _lj_ff_math_acos:
3004: 60 02 40 f9 ldr x0, [x19]
3008: 9f 23 00 f1 cmp x28, #8
300c: 60 02 40 fd ldr d0, [x19]
3010: c3 3a 00 54 b.lo #1880 <_lj_fff_fallback>
3014: 3f 83 40 eb cmp x25, x0, lsr #32
3018: 89 3a 00 54 b.ls #1872 <_lj_fff_fallback>
301c: 00 00 00 94 bl #0 <_lj_ff_math_acos+0x18>
3020: be ff ff 17 b #-264 <_lj_fff_resn>
0000000000003024 _lj_ff_math_atan:
3024: 60 02 40 f9 ldr x0, [x19]
3028: 9f 23 00 f1 cmp x28, #8
302c: 60 02 40 fd ldr d0, [x19]
3030: c3 39 00 54 b.lo #1848 <_lj_fff_fallback>
3034: 3f 83 40 eb cmp x25, x0, lsr #32
3038: 89 39 00 54 b.ls #1840 <_lj_fff_fallback>
303c: 00 00 00 94 bl #0 <_lj_ff_math_atan+0x18>
3040: b6 ff ff 17 b #-296 <_lj_fff_resn>
0000000000003044 _lj_ff_math_sinh:
3044: 60 02 40 f9 ldr x0, [x19]
3048: 9f 23 00 f1 cmp x28, #8
304c: 60 02 40 fd ldr d0, [x19]
3050: c3 38 00 54 b.lo #1816 <_lj_fff_fallback>
3054: 3f 83 40 eb cmp x25, x0, lsr #32
3058: 89 38 00 54 b.ls #1808 <_lj_fff_fallback>
305c: 00 00 00 94 bl #0 <_lj_ff_math_sinh+0x18>
3060: ae ff ff 17 b #-328 <_lj_fff_resn>
0000000000003064 _lj_ff_math_cosh:
3064: 60 02 40 f9 ldr x0, [x19]
3068: 9f 23 00 f1 cmp x28, #8
306c: 60 02 40 fd ldr d0, [x19]
3070: c3 37 00 54 b.lo #1784 <_lj_fff_fallback>
3074: 3f 83 40 eb cmp x25, x0, lsr #32
3078: 89 37 00 54 b.ls #1776 <_lj_fff_fallback>
307c: 00 00 00 94 bl #0 <_lj_ff_math_cosh+0x18>
3080: a6 ff ff 17 b #-360 <_lj_fff_resn>
0000000000003084 _lj_ff_math_tanh:
3084: 60 02 40 f9 ldr x0, [x19]
3088: 9f 23 00 f1 cmp x28, #8
308c: 60 02 40 fd ldr d0, [x19]
3090: c3 36 00 54 b.lo #1752 <_lj_fff_fallback>
3094: 3f 83 40 eb cmp x25, x0, lsr #32
3098: 89 36 00 54 b.ls #1744 <_lj_fff_fallback>
309c: 00 00 00 94 bl #0 <_lj_ff_math_tanh+0x18>
30a0: 9e ff ff 17 b #-392 <_lj_fff_resn>
00000000000030a4 _lj_ff_math_pow:
30a4: 60 06 40 a9 ldp x0, x1, [x19]
30a8: 9f 43 00 f1 cmp x28, #16
30ac: 60 06 40 6d ldp d0, d1, [x19]
30b0: c3 35 00 54 b.lo #1720 <_lj_fff_fallback>
30b4: 3f 83 40 eb cmp x25, x0, lsr #32
30b8: 89 35 00 54 b.ls #1712 <_lj_fff_fallback>
30bc: 3f 83 41 eb cmp x25, x1, lsr #32
30c0: 49 35 00 54 b.ls #1704 <_lj_fff_fallback>
30c4: 00 00 00 94 bl #0 <_lj_ff_math_pow+0x20>
30c8: 94 ff ff 17 b #-432 <_lj_fff_resn>
00000000000030cc _lj_ff_math_atan2:
30cc: 60 06 40 a9 ldp x0, x1, [x19]
30d0: 9f 43 00 f1 cmp x28, #16
30d4: 60 06 40 6d ldp d0, d1, [x19]
30d8: 83 34 00 54 b.lo #1680 <_lj_fff_fallback>
30dc: 3f 83 40 eb cmp x25, x0, lsr #32
30e0: 49 34 00 54 b.ls #1672 <_lj_fff_fallback>
30e4: 3f 83 41 eb cmp x25, x1, lsr #32
30e8: 09 34 00 54 b.ls #1664 <_lj_fff_fallback>
30ec: 00 00 00 94 bl #0 <_lj_ff_math_atan2+0x20>
30f0: 8a ff ff 17 b #-472 <_lj_fff_resn>
00000000000030f4 _lj_ff_math_fmod:
30f4: 60 06 40 a9 ldp x0, x1, [x19]
30f8: 9f 43 00 f1 cmp x28, #16
30fc: 60 06 40 6d ldp d0, d1, [x19]
3100: 43 33 00 54 b.lo #1640 <_lj_fff_fallback>
3104: 3f 83 40 eb cmp x25, x0, lsr #32
3108: 09 33 00 54 b.ls #1632 <_lj_fff_fallback>
310c: 3f 83 41 eb cmp x25, x1, lsr #32
3110: c9 32 00 54 b.ls #1624 <_lj_fff_fallback>
3114: 00 00 00 94 bl #0 <_lj_ff_math_fmod+0x20>
3118: 80 ff ff 17 b #-512 <_lj_fff_resn>
000000000000311c _lj_ff_math_ldexp:
311c: 60 06 40 a9 ldp x0, x1, [x19]
3120: 9f 43 00 f1 cmp x28, #16
3124: 23 32 00 54 b.lo #1604 <_lj_fff_fallback>
3128: 60 02 40 fd ldr d0, [x19]
312c: 3f 83 40 eb cmp x25, x0, lsr #32
3130: c9 31 00 54 b.ls #1592 <_lj_fff_fallback>
3134: 3f 83 41 eb cmp x25, x1, lsr #32
3138: 81 31 00 54 b.ne #1584 <_lj_fff_fallback>
313c: 20 7c 40 93 sxtw x0, w1
3140: 00 00 00 94 bl #0 <_lj_ff_math_ldexp+0x24>
3144: 75 ff ff 17 b #-556 <_lj_fff_resn>
0000000000003148 _lj_ff_math_frexp:
3148: 60 02 40 f9 ldr x0, [x19]
314c: 9f 23 00 f1 cmp x28, #8
3150: 60 02 40 fd ldr d0, [x19]
3154: a3 30 00 54 b.lo #1556 <_lj_fff_fallback>
3158: 3f 83 40 eb cmp x25, x0, lsr #32
315c: 69 30 00 54 b.ls #1548 <_lj_fff_fallback>
3160: e0 63 00 91 add x0, sp, #24
3164: 00 00 00 94 bl #0 <_lj_ff_math_frexp+0x1c>
3168: e1 1b 40 b9 ldr w1, [sp, #24]
316c: 75 82 5f f8 ldur x21, [x19, #-8]
3170: 60 02 1f fc stur d0, [x19, #-16]
3174: 1c 03 80 52 mov w28, #24
3178: 21 00 18 8b add x1, x1, x24
317c: 61 82 1f f8 stur x1, [x19, #-8]
3180: 4b ff ff 17 b #-724 <_lj_fff_res>
0000000000003184 _lj_ff_math_modf:
3184: 60 02 40 f9 ldr x0, [x19]
3188: 9f 23 00 f1 cmp x28, #8
318c: 60 02 40 fd ldr d0, [x19]
3190: c3 2e 00 54 b.lo #1496 <_lj_fff_fallback>
3194: 3f 83 40 eb cmp x25, x0, lsr #32
3198: 89 2e 00 54 b.ls #1488 <_lj_fff_fallback>
319c: 60 42 00 d1 sub x0, x19, #16
31a0: 75 82 5f f8 ldur x21, [x19, #-8]
31a4: 00 00 00 94 bl #0 <_lj_ff_math_modf+0x20>
31a8: 1c 03 80 52 mov w28, #24
31ac: 60 82 1f fc stur d0, [x19, #-8]
31b0: 3f ff ff 17 b #-772 <_lj_fff_res>
00000000000031b4 _lj_ff_math_min:
31b4: 60 02 40 f9 ldr x0, [x19]
31b8: 9f 23 00 f1 cmp x28, #8
31bc: 63 2d 00 54 b.lo #1452 <_lj_fff_fallback>
31c0: 71 02 1c 8b add x17, x19, x28
31c4: 7b 22 00 91 add x27, x19, #8
31c8: 3f 83 40 eb cmp x25, x0, lsr #32
31cc: c1 01 00 54 b.ne #56 <_lj_ff_math_min+0x50>
31d0: 61 03 40 f9 ldr x1, [x27]
31d4: 7f 03 11 eb cmp x27, x17
31d8: 42 e6 ff 54 b.hs #-824 <_lj_fff_restv>
31dc: 3f 83 41 eb cmp x25, x1, lsr #32
31e0: a1 00 00 54 b.ne #20 <_lj_ff_math_min+0x40>
31e4: 1f 00 01 6b cmp w0, w1
31e8: 7b 23 00 91 add x27, x27, #8
31ec: 20 c0 80 9a csel x0, x1, x0, gt
31f0: f8 ff ff 17 b #-32 <_lj_ff_math_min+0x1c>
31f4: 00 00 62 1e scvtf d0, w0
31f8: 83 2b 00 54 b.lo #1392 <_lj_fff_fallback>
31fc: 61 03 40 fd ldr d1, [x27]
3200: 09 00 00 14 b #36 <_lj_ff_math_min+0x70>
3204: 60 02 40 fd ldr d0, [x19]
3208: 03 2b 00 54 b.lo #1376 <_lj_fff_fallback>
320c: 61 03 40 f9 ldr x1, [x27]
3210: 61 03 40 fd ldr d1, [x27]
3214: 7f 03 11 eb cmp x27, x17
3218: 02 e8 ff 54 b.hs #-768 <_lj_fff_resn>
321c: 3f 83 41 eb cmp x25, x1, lsr #32
3220: a9 00 00 54 b.ls #20 <_lj_ff_math_min+0x80>
3224: 00 20 61 1e fcmp d0, d1
3228: 7b 23 00 91 add x27, x27, #8
322c: 20 5c 60 1e fcsel d0, d1, d0, pl
3230: f7 ff ff 17 b #-36 <_lj_ff_math_min+0x58>
3234: 21 00 62 1e scvtf d1, w1
3238: 83 29 00 54 b.lo #1328 <_lj_fff_fallback>
323c: fa ff ff 17 b #-24 <_lj_ff_math_min+0x70>
0000000000003240 _lj_ff_math_max:
3240: 60 02 40 f9 ldr x0, [x19]
3244: 9f 23 00 f1 cmp x28, #8
3248: 03 29 00 54 b.lo #1312 <_lj_fff_fallback>
324c: 71 02 1c 8b add x17, x19, x28
3250: 7b 22 00 91 add x27, x19, #8
3254: 3f 83 40 eb cmp x25, x0, lsr #32
3258: c1 01 00 54 b.ne #56 <_lj_ff_math_max+0x50>
325c: 61 03 40 f9 ldr x1, [x27]
3260: 7f 03 11 eb cmp x27, x17
3264: e2 e1 ff 54 b.hs #-964 <_lj_fff_restv>
3268: 3f 83 41 eb cmp x25, x1, lsr #32
326c: a1 00 00 54 b.ne #20 <_lj_ff_math_max+0x40>
3270: 1f 00 01 6b cmp w0, w1
3274: 7b 23 00 91 add x27, x27, #8
3278: 20 b0 80 9a csel x0, x1, x0, lt
327c: f8 ff ff 17 b #-32 <_lj_ff_math_max+0x1c>
3280: 00 00 62 1e scvtf d0, w0
3284: 23 27 00 54 b.lo #1252 <_lj_fff_fallback>
3288: 61 03 40 fd ldr d1, [x27]
328c: 09 00 00 14 b #36 <_lj_ff_math_max+0x70>
3290: 60 02 40 fd ldr d0, [x19]
3294: a3 26 00 54 b.lo #1236 <_lj_fff_fallback>
3298: 61 03 40 f9 ldr x1, [x27]
329c: 61 03 40 fd ldr d1, [x27]
32a0: 7f 03 11 eb cmp x27, x17
32a4: a2 e3 ff 54 b.hs #-908 <_lj_fff_resn>
32a8: 3f 83 41 eb cmp x25, x1, lsr #32
32ac: a9 00 00 54 b.ls #20 <_lj_ff_math_max+0x80>
32b0: 00 20 61 1e fcmp d0, d1
32b4: 7b 23 00 91 add x27, x27, #8
32b8: 20 dc 60 1e fcsel d0, d1, d0, le
32bc: f7 ff ff 17 b #-36 <_lj_ff_math_max+0x58>
32c0: 21 00 62 1e scvtf d1, w1
32c4: 23 25 00 54 b.lo #1188 <_lj_fff_fallback>
32c8: fa ff ff 17 b #-24 <_lj_ff_math_max+0x70>
00000000000032cc _lj_ff_string_byte:
32cc: 75 82 7f a9 ldp x21, x0, [x19, #-8]
32d0: 9f 23 00 f1 cmp x28, #8
32d4: 0f fc 6f 93 asr x15, x0, #47
32d8: e0 09 45 ba ccmn x15, #5, #0, eq
32dc: 00 b8 40 92 and x0, x0, #0x7fffffffffff
32e0: 41 24 00 54 b.ne #1160 <_lj_fff_fallback>
32e4: 08 60 40 39 ldrb w8, [x0, #24]
32e8: 02 14 40 b9 ldr w2, [x0, #20]
32ec: 08 01 18 8b add x8, x8, x24
32f0: 68 02 1f f8 stur x8, [x19, #-16]
32f4: 1c 01 80 52 mov w28, #8
32f8: a2 dd ff b4 cbz x2, #-1100 <_lj_fff_res>
32fc: eb fe ff 17 b #-1108 <_lj_fff_res1>
0000000000003300 _lj_ff_string_char:
3300: c0 06 41 a9 ldp x0, x1, [x22, #16]
3304: 1f 00 01 eb cmp x0, x1
3308: 4b 00 00 54 b.lt #8 <_lj_ff_string_char+0x10>
330c: 41 01 00 94 bl #1284 <_lj_fff_gcstep>
3310: 75 82 7f a9 ldp x21, x0, [x19, #-8]
3314: 1f fc 03 71 cmp w0, #255
3318: 80 9b 48 fa ccmp x28, #8, #0, ls
331c: 61 22 00 54 b.ne #1100 <_lj_fff_fallback>
3320: 3f 83 40 eb cmp x25, x0, lsr #32
3324: 21 22 00 54 b.ne #1092 <_lj_fff_fallback>
3328: 22 00 80 52 mov w2, #1
332c: e1 03 13 aa mov x1, x19
0000000000003330 _lj_fff_newstr:
3330: f3 12 00 f9 str x19, [x23, #32]
3334: e0 03 17 aa mov x0, x23
3338: f5 07 00 f9 str x21, [sp, #8]
333c: 00 00 00 94 bl #0 <_lj_fff_newstr+0xc>
0000000000003340 _lj_fff_resstr:
3340: f3 12 40 f9 ldr x19, [x23, #32]
3344: 89 00 80 92 mov x9, #-5
3348: 00 bc 09 8b add x0, x0, x9, lsl #47
334c: d5 fe ff 17 b #-1196 <_lj_fff_restv>
0000000000003350 _lj_ff_string_sub:
3350: c0 06 41 a9 ldp x0, x1, [x22, #16]
3354: 1f 00 01 eb cmp x0, x1
3358: 4b 00 00 54 b.lt #8 <_lj_ff_string_sub+0x10>
335c: 2d 01 00 94 bl #1204 <_lj_fff_gcstep>
3360: 60 02 40 f9 ldr x0, [x19]
3364: 62 0a 40 f9 ldr x2, [x19, #16]
3368: 9f 43 00 f1 cmp x28, #16
336c: 11 00 80 92 mov x17, #-1
3370: a0 00 00 54 b.eq #20 <_lj_ff_string_sub+0x34>
3374: a3 1f 00 54 b.lo #1012 <_lj_fff_fallback>
3378: 3f 83 42 eb cmp x25, x2, lsr #32
337c: 61 1f 00 54 b.ne #1004 <_lj_fff_fallback>
3380: 51 7c 40 93 sxtw x17, w2
3384: 61 06 40 f9 ldr x1, [x19, #8]
3388: 0f fc 6f 93 asr x15, x0, #47
338c: ff 15 00 b1 cmn x15, #5
3390: 00 b8 40 92 and x0, x0, #0x7fffffffffff
3394: a1 1e 00 54 b.ne #980 <_lj_fff_fallback>
3398: 09 14 40 b9 ldr w9, [x0, #20]
339c: 3f 83 41 eb cmp x25, x1, lsr #32
33a0: 41 1e 00 54 b.ne #968 <_lj_fff_fallback>
33a4: 21 7c 40 93 sxtw x1, w1
33a8: 2a 02 09 8b add x10, x17, x9
33ac: 3f 02 00 f1 cmp x17, #0
33b0: 28 00 09 8b add x8, x1, x9
33b4: 31 a6 8a 9a csinc x17, x17, x10, ge
33b8: 3f 00 00 f1 cmp x1, #0
33bc: 21 a4 88 9a csinc x1, x1, x8, ge
33c0: 3f 02 00 f1 cmp x17, #0
33c4: 31 a2 9f 9a csel x17, x17, xzr, ge
33c8: 3f 04 00 f1 cmp x1, #1
33cc: 21 a4 9f 9a csinc x1, x1, xzr, ge
33d0: 3f 02 09 eb cmp x17, x9
33d4: 31 d2 89 9a csel x17, x17, x9, le
33d8: 00 5c 00 91 add x0, x0, #23
33dc: 22 02 01 eb subs x2, x17, x1
33e0: 01 00 01 8b add x1, x0, x1
33e4: 42 04 00 91 add x2, x2, #1
33e8: 4a fa ff 54 b.ge #-184 <_lj_fff_newstr>
33ec: c0 e2 01 91 add x0, x22, #120
33f0: 89 00 80 92 mov x9, #-5
33f4: 00 bc 09 8b add x0, x0, x9, lsl #47
33f8: aa fe ff 17 b #-1368 <_lj_fff_restv>
00000000000033fc _lj_ff_string_reverse:
33fc: c0 06 41 a9 ldp x0, x1, [x22, #16]
3400: 1f 00 01 eb cmp x0, x1
3404: 4b 00 00 54 b.lt #8 <_lj_ff_string_reverse+0x10>
3408: 02 01 00 94 bl #1032 <_lj_fff_gcstep>
340c: 61 02 40 f9 ldr x1, [x19]
3410: 9f 23 00 f1 cmp x28, #8
3414: 2f fc 6f 93 asr x15, x1, #47
3418: e0 29 45 ba ccmn x15, #5, #0, hs
341c: 21 b8 40 92 and x1, x1, #0x7fffffffffff
3420: 41 1a 00 54 b.ne #840 <_lj_fff_fallback>
3424: c8 6e 40 f9 ldr x8, [x22, #216]
3428: c0 22 03 91 add x0, x22, #200
342c: f3 12 00 f9 str x19, [x23, #32]
3430: f5 07 00 f9 str x21, [sp, #8]
3434: d7 72 00 f9 str x23, [x22, #224]
3438: c8 66 00 f9 str x8, [x22, #200]
343c: 00 00 00 94 bl #0 <_lj_ff_string_reverse+0x40>
3440: 00 00 00 94 bl #0 <_lj_ff_string_reverse+0x44>
3444: bf ff ff 17 b #-260 <_lj_fff_resstr>
0000000000003448 _lj_ff_string_lower:
3448: c0 06 41 a9 ldp x0, x1, [x22, #16]
344c: 1f 00 01 eb cmp x0, x1
3450: 4b 00 00 54 b.lt #8 <_lj_ff_string_lower+0x10>
3454: ef 00 00 94 bl #956 <_lj_fff_gcstep>
3458: 61 02 40 f9 ldr x1, [x19]
345c: 9f 23 00 f1 cmp x28, #8
3460: 2f fc 6f 93 asr x15, x1, #47
3464: e0 29 45 ba ccmn x15, #5, #0, hs
3468: 21 b8 40 92 and x1, x1, #0x7fffffffffff
346c: e1 17 00 54 b.ne #764 <_lj_fff_fallback>
3470: c8 6e 40 f9 ldr x8, [x22, #216]
3474: c0 22 03 91 add x0, x22, #200
3478: f3 12 00 f9 str x19, [x23, #32]
347c: f5 07 00 f9 str x21, [sp, #8]
3480: d7 72 00 f9 str x23, [x22, #224]
3484: c8 66 00 f9 str x8, [x22, #200]
3488: 00 00 00 94 bl #0 <_lj_ff_string_lower+0x40>
348c: 00 00 00 94 bl #0 <_lj_ff_string_lower+0x44>
3490: ac ff ff 17 b #-336 <_lj_fff_resstr>
0000000000003494 _lj_ff_string_upper:
3494: c0 06 41 a9 ldp x0, x1, [x22, #16]
3498: 1f 00 01 eb cmp x0, x1
349c: 4b 00 00 54 b.lt #8 <_lj_ff_string_upper+0x10>
34a0: dc 00 00 94 bl #880 <_lj_fff_gcstep>
34a4: 61 02 40 f9 ldr x1, [x19]
34a8: 9f 23 00 f1 cmp x28, #8
34ac: 2f fc 6f 93 asr x15, x1, #47
34b0: e0 29 45 ba ccmn x15, #5, #0, hs
34b4: 21 b8 40 92 and x1, x1, #0x7fffffffffff
34b8: 81 15 00 54 b.ne #688 <_lj_fff_fallback>
34bc: c8 6e 40 f9 ldr x8, [x22, #216]
34c0: c0 22 03 91 add x0, x22, #200
34c4: f3 12 00 f9 str x19, [x23, #32]
34c8: f5 07 00 f9 str x21, [sp, #8]
34cc: d7 72 00 f9 str x23, [x22, #224]
34d0: c8 66 00 f9 str x8, [x22, #200]
34d4: 00 00 00 94 bl #0 <_lj_ff_string_upper+0x40>
34d8: 00 00 00 94 bl #0 <_lj_ff_string_upper+0x44>
34dc: 99 ff ff 17 b #-412 <_lj_fff_resstr>
00000000000034e0 _lj_vm_tobit_fb:
34e0: 49 14 00 54 b.ls #648 <_lj_fff_fallback>
34e4: 01 00 00 8b add x1, x0, x0
34e8: 82 86 80 52 mov w2, #1076
34ec: 42 d4 41 cb sub x2, x2, x1, lsr #53
34f0: 5f d4 00 f1 cmp x2, #53
34f4: e8 00 00 54 b.hi #28 <_lj_vm_tobit_fb+0x30>
34f8: 21 d0 40 92 and x1, x1, #0x1fffffffffffff
34fc: 21 00 4b b2 orr x1, x1, #0x20000000000000
3500: 1f 00 00 f1 cmp x0, #0
3504: 21 24 c2 9a lsr x1, x1, x2
3508: 20 54 81 5a cneg w0, w1, mi
350c: c0 03 1f d6 br x30
3510: 00 00 80 52 mov w0, #0
3514: c0 03 1f d6 br x30
0000000000003518 _lj_ff_bit_band:
3518: 60 02 40 f9 ldr x0, [x19]
351c: 9f 23 00 f1 cmp x28, #8
3520: 43 12 00 54 b.lo #584 <_lj_fff_fallback>
3524: 7e 00 00 10 adr x30, #12
3528: 3f 83 40 eb cmp x25, x0, lsr #32
352c: a1 fd ff 54 b.ne #-76 <_lj_vm_tobit_fb>
3530: 1b 01 80 52 mov w27, #8
3534: e8 03 00 2a mov w8, w0
3538: fe 00 00 10 adr x30, #28
353c: 60 6a 7b f8 ldr x0, [x19, x27]
3540: 7f 03 1c eb cmp x27, x28
3544: 7b 23 00 91 add x27, x27, #8
3548: ca 05 00 54 b.ge #184 <_lj_ff_bit_tobit+0x1c>
354c: 3f 83 40 eb cmp x25, x0, lsr #32
3550: 81 fc ff 54 b.ne #-112 <_lj_vm_tobit_fb>
3554: 08 01 00 0a and w8, w8, w0
3558: f9 ff ff 17 b #-28 <_lj_ff_bit_band+0x24>
000000000000355c _lj_ff_bit_bor:
355c: 60 02 40 f9 ldr x0, [x19]
3560: 9f 23 00 f1 cmp x28, #8
3564: 23 10 00 54 b.lo #516 <_lj_fff_fallback>
3568: 7e 00 00 10 adr x30, #12
356c: 3f 83 40 eb cmp x25, x0, lsr #32
3570: 81 fb ff 54 b.ne #-144 <_lj_vm_tobit_fb>
3574: 1b 01 80 52 mov w27, #8
3578: e8 03 00 2a mov w8, w0
357c: fe 00 00 10 adr x30, #28
3580: 60 6a 7b f8 ldr x0, [x19, x27]
3584: 7f 03 1c eb cmp x27, x28
3588: 7b 23 00 91 add x27, x27, #8
358c: aa 03 00 54 b.ge #116 <_lj_ff_bit_tobit+0x1c>
3590: 3f 83 40 eb cmp x25, x0, lsr #32
3594: 61 fa ff 54 b.ne #-180 <_lj_vm_tobit_fb>
3598: 08 01 00 2a orr w8, w8, w0
359c: f9 ff ff 17 b #-28 <_lj_ff_bit_bor+0x24>
00000000000035a0 _lj_ff_bit_bxor:
35a0: 60 02 40 f9 ldr x0, [x19]
35a4: 9f 23 00 f1 cmp x28, #8
35a8: 03 0e 00 54 b.lo #448 <_lj_fff_fallback>
35ac: 7e 00 00 10 adr x30, #12
35b0: 3f 83 40 eb cmp x25, x0, lsr #32
35b4: 61 f9 ff 54 b.ne #-212 <_lj_vm_tobit_fb>
35b8: 1b 01 80 52 mov w27, #8
35bc: e8 03 00 2a mov w8, w0
35c0: fe 00 00 10 adr x30, #28
35c4: 60 6a 7b f8 ldr x0, [x19, x27]
35c8: 7f 03 1c eb cmp x27, x28
35cc: 7b 23 00 91 add x27, x27, #8
35d0: 8a 01 00 54 b.ge #48 <_lj_ff_bit_tobit+0x1c>
35d4: 3f 83 40 eb cmp x25, x0, lsr #32
35d8: 41 f8 ff 54 b.ne #-248 <_lj_vm_tobit_fb>
35dc: 08 01 00 4a eor w8, w8, w0
35e0: f9 ff ff 17 b #-28 <_lj_ff_bit_bxor+0x24>
00000000000035e4 _lj_ff_bit_tobit:
35e4: 60 02 40 f9 ldr x0, [x19]
35e8: 9f 23 00 f1 cmp x28, #8
35ec: e3 0b 00 54 b.lo #380 <_lj_fff_fallback>
35f0: 7e 00 00 10 adr x30, #12
35f4: 3f 83 40 eb cmp x25, x0, lsr #32
35f8: 41 f7 ff 54 b.ne #-280 <_lj_vm_tobit_fb>
35fc: e8 03 00 2a mov w8, w0
3600: 00 01 18 8b add x0, x8, x24
3604: 27 fe ff 17 b #-1892 <_lj_fff_restv>
0000000000003608 _lj_ff_bit_bswap:
3608: 60 02 40 f9 ldr x0, [x19]
360c: 9f 23 00 f1 cmp x28, #8
3610: c3 0a 00 54 b.lo #344 <_lj_fff_fallback>
3614: 7e 00 00 10 adr x30, #12
3618: 3f 83 40 eb cmp x25, x0, lsr #32
361c: 21 f6 ff 54 b.ne #-316 <_lj_vm_tobit_fb>
3620: 08 08 c0 5a rev w8, w0
3624: 00 01 18 8b add x0, x8, x24
3628: 1e fe ff 17 b #-1928 <_lj_fff_restv>
000000000000362c _lj_ff_bit_bnot:
362c: 60 02 40 f9 ldr x0, [x19]
3630: 9f 23 00 f1 cmp x28, #8
3634: a3 09 00 54 b.lo #308 <_lj_fff_fallback>
3638: 7e 00 00 10 adr x30, #12
363c: 3f 83 40 eb cmp x25, x0, lsr #32
3640: 01 f5 ff 54 b.ne #-352 <_lj_vm_tobit_fb>
3644: e8 03 20 2a mvn w8, w0
3648: 00 01 18 8b add x0, x8, x24
364c: 15 fe ff 17 b #-1964 <_lj_fff_restv>
0000000000003650 _lj_ff_bit_lshift:
3650: 68 02 40 a9 ldp x8, x0, [x19]
3654: 9f 43 00 f1 cmp x28, #16
3658: 83 08 00 54 b.lo #272 <_lj_fff_fallback>
365c: 7e 00 00 10 adr x30, #12
3660: 3f 83 40 eb cmp x25, x0, lsr #32
3664: e1 f3 ff 54 b.ne #-388 <_lj_vm_tobit_fb>
3668: e9 03 00 aa mov x9, x0
366c: e0 03 08 aa mov x0, x8
3670: 7e 00 00 10 adr x30, #12
3674: 3f 83 40 eb cmp x25, x0, lsr #32
3678: 41 f3 ff 54 b.ne #-408 <_lj_vm_tobit_fb>
367c: 08 20 c9 1a lsl w8, w0, w9
3680: 00 01 18 8b add x0, x8, x24
3684: 07 fe ff 17 b #-2020 <_lj_fff_restv>
0000000000003688 _lj_ff_bit_rshift:
3688: 68 02 40 a9 ldp x8, x0, [x19]
368c: 9f 43 00 f1 cmp x28, #16
3690: c3 06 00 54 b.lo #216 <_lj_fff_fallback>
3694: 7e 00 00 10 adr x30, #12
3698: 3f 83 40 eb cmp x25, x0, lsr #32
369c: 21 f2 ff 54 b.ne #-444 <_lj_vm_tobit_fb>
36a0: e9 03 00 aa mov x9, x0
36a4: e0 03 08 aa mov x0, x8
36a8: 7e 00 00 10 adr x30, #12
36ac: 3f 83 40 eb cmp x25, x0, lsr #32
36b0: 81 f1 ff 54 b.ne #-464 <_lj_vm_tobit_fb>
36b4: 08 24 c9 1a lsr w8, w0, w9
36b8: 00 01 18 8b add x0, x8, x24
36bc: f9 fd ff 17 b #-2076 <_lj_fff_restv>
00000000000036c0 _lj_ff_bit_arshift:
36c0: 68 02 40 a9 ldp x8, x0, [x19]
36c4: 9f 43 00 f1 cmp x28, #16
36c8: 03 05 00 54 b.lo #160 <_lj_fff_fallback>
36cc: 7e 00 00 10 adr x30, #12
36d0: 3f 83 40 eb cmp x25, x0, lsr #32
36d4: 61 f0 ff 54 b.ne #-500 <_lj_vm_tobit_fb>
36d8: e9 03 00 aa mov x9, x0
36dc: e0 03 08 aa mov x0, x8
36e0: 7e 00 00 10 adr x30, #12
36e4: 3f 83 40 eb cmp x25, x0, lsr #32
36e8: c1 ef ff 54 b.ne #-520 <_lj_vm_tobit_fb>
36ec: 08 28 c9 1a asr w8, w0, w9
36f0: 00 01 18 8b add x0, x8, x24
36f4: eb fd ff 17 b #-2132 <_lj_fff_restv>
00000000000036f8 _lj_ff_bit_rol:
36f8: 68 02 40 a9 ldp x8, x0, [x19]
36fc: 9f 43 00 f1 cmp x28, #16
3700: 43 03 00 54 b.lo #104 <_lj_fff_fallback>
3704: 7e 00 00 10 adr x30, #12
3708: 3f 83 40 eb cmp x25, x0, lsr #32
370c: a1 ee ff 54 b.ne #-556 <_lj_vm_tobit_fb>
3710: e9 03 00 cb neg x9, x0
3714: e0 03 08 aa mov x0, x8
3718: 7e 00 00 10 adr x30, #12
371c: 3f 83 40 eb cmp x25, x0, lsr #32
3720: 01 ee ff 54 b.ne #-576 <_lj_vm_tobit_fb>
3724: 08 2c c9 1a ror w8, w0, w9
3728: 00 01 18 8b add x0, x8, x24
372c: dd fd ff 17 b #-2188 <_lj_fff_restv>
0000000000003730 _lj_ff_bit_ror:
3730: 68 02 40 a9 ldp x8, x0, [x19]
3734: 9f 43 00 f1 cmp x28, #16
3738: 83 01 00 54 b.lo #48 <_lj_fff_fallback>
373c: 7e 00 00 10 adr x30, #12
3740: 3f 83 40 eb cmp x25, x0, lsr #32
3744: e1 ec ff 54 b.ne #-612 <_lj_vm_tobit_fb>
3748: e9 03 00 aa mov x9, x0
374c: e0 03 08 aa mov x0, x8
3750: 7e 00 00 10 adr x30, #12
3754: 3f 83 40 eb cmp x25, x0, lsr #32
3758: 41 ec ff 54 b.ne #-632 <_lj_vm_tobit_fb>
375c: 08 2c c9 1a ror w8, w0, w9
3760: 00 01 18 8b add x0, x8, x24
3764: cf fd ff 17 b #-2244 <_lj_fff_restv>
0000000000003768 _lj_fff_fallback:
3768: 62 56 7f a9 ldp x2, x21, [x19, #-16]
376c: ea 1a 40 f9 ldr x10, [x23, #48]
3770: 69 02 1c 8b add x9, x19, x28
3774: f3 26 02 a9 stp x19, x9, [x23, #32]
3778: 42 b8 40 92 and x2, x2, #0x7fffffffffff
377c: 29 81 02 91 add x9, x9, #160
3780: 42 14 40 f9 ldr x2, [x2, #40]
3784: f5 07 00 f9 str x21, [sp, #8]
3788: 3f 01 0a eb cmp x9, x10
378c: e0 03 17 aa mov x0, x23
3790: 68 03 00 54 b.hi #108 <_lj_vm_call_tail+0x20>
3794: 40 00 3f d6 blr x2
3798: f3 12 40 f9 ldr x19, [x23, #32]
379c: 1f 00 00 71 cmp w0, #0
37a0: 1c f0 7d d3 lsl x28, x0, #3
37a4: 7b 42 00 d1 sub x27, x19, #16
37a8: 2c b8 ff 54 b.gt #-2300 <_lj_fff_res>
37ac: e0 16 40 f9 ldr x0, [x23, #40]
37b0: 62 02 5f f8 ldur x2, [x19, #-16]
37b4: 1c 00 13 cb sub x28, x0, x19
37b8: 21 01 00 54 b.ne #36 <_lj_vm_call_tail>
37bc: 42 b8 40 92 and x2, x2, #0x7fffffffffff
37c0: 55 10 40 f9 ldr x21, [x2, #32]
37c4: b0 46 40 b8 ldr w16, [x21], #4
37c8: c9 0e 30 8b add x9, x22, w16, uxtb #3
37cc: 1b 3e 48 d3 ubfx x27, x16, #8, #8
37d0: 28 b5 47 f9 ldr x8, [x9, #3944]
37d4: 7b 0e 1b 8b add x27, x19, x27, lsl #3
37d8: 00 01 1f d6 br x8
00000000000037dc _lj_vm_call_tail:
37dc: a8 06 40 f2 ands x8, x21, #0x3
37e0: a9 f2 7d 92 and x9, x21, #0xfffffffffffffff8
37e4: 81 00 00 54 b.ne #16 <_lj_vm_call_tail+0x18>
37e8: bb d2 5f 38 ldurb w27, [x21, #-3]
37ec: 7b f3 7d d3 lsl x27, x27, #3
37f0: 69 43 00 91 add x9, x27, #16
37f4: 71 02 09 cb sub x17, x19, x9
37f8: ea fa ff 17 b #-5208 <_lj_vm_call_dispatch>
37fc: 81 02 80 52 mov w1, #20
3800: 00 00 00 94 bl #0 <_lj_vm_call_tail+0x24>
3804: f3 12 40 f9 ldr x19, [x23, #32]
3808: 1f 00 00 eb cmp x0, x0
380c: e8 ff ff 17 b #-96 <_lj_fff_fallback+0x44>
0000000000003810 _lj_fff_gcstep:
3810: 61 02 1c 8b add x1, x19, x28
3814: fb 03 1e aa mov x27, x30
3818: f3 06 02 a9 stp x19, x1, [x23, #32]
381c: f5 07 00 f9 str x21, [sp, #8]
3820: e0 03 17 aa mov x0, x23
3824: 00 00 00 94 bl #0 <_lj_fff_gcstep+0x14>
3828: f3 06 42 a9 ldp x19, x1, [x23, #32]
382c: 62 02 5f f8 ldur x2, [x19, #-16]
3830: fe 03 1b aa mov x30, x27
3834: 3c 00 13 cb sub x28, x1, x19
3838: 42 b8 40 92 and x2, x2, #0x7fffffffffff
383c: c0 03 5f d6 ret
0000000000003840 _lj_vm_record:
3840: c0 46 42 39 ldrb w0, [x22, #145]
3844: 1f 00 7b f2 tst x0, #0x20
3848: 61 01 00 54 b.ne #44 <_lj_vm_rethook+0x8>
384c: c1 4a 41 b9 ldr w1, [x22, #328]
3850: 1f 00 7c f2 tst x0, #0x10
3854: 61 02 00 54 b.ne #76 <_lj_vm_inshook+0x24>
3858: 21 04 00 51 sub w1, w1, #1
385c: 1f 04 7e f2 tst x0, #0xc
3860: 00 02 00 54 b.eq #64 <_lj_vm_inshook+0x24>
3864: c1 4a 01 b9 str w1, [x22, #328]
3868: 0e 00 00 14 b #56 <_lj_vm_inshook+0x24>
000000000000386c _lj_vm_rethook:
386c: ca 46 42 39 ldrb w10, [x22, #145]
3870: 8a 01 20 36 tbz w10, #4, #48 <_lj_vm_inshook+0x24>
3874: 28 1d 4a f9 ldr x8, [x9, #5176]
3878: 00 01 1f d6 br x8
000000000000387c _lj_vm_inshook:
387c: ca 46 42 39 ldrb w10, [x22, #145]
3880: cb 4a 41 b9 ldr w11, [x22, #328]
3884: 8a ff 27 37 tbnz w10, #4, #-16 <_lj_vm_rethook+0x8>
3888: 5f 05 1e 72 tst w10, #0xc
388c: 40 ff ff 54 b.eq #-24 <_lj_vm_rethook+0x8>
3890: 6b 05 00 51 sub w11, w11, #1
3894: cb 4a 01 b9 str w11, [x22, #328]
3898: 4b 00 00 34 cbz w11, #8 <_lj_vm_inshook+0x24>
389c: ca fe 17 36 tbz w10, #2, #-40 <_lj_vm_rethook+0x8>
38a0: e0 03 17 aa mov x0, x23
38a4: f3 12 00 f9 str x19, [x23, #32]
38a8: e1 03 15 aa mov x1, x21
38ac: 00 00 00 94 bl #0 <_lj_vm_inshook+0x30>
38b0: f3 12 40 f9 ldr x19, [x23, #32]
38b4: b0 c2 5f b8 ldur w16, [x21, #-4]
38b8: c9 0e 30 8b add x9, x22, w16, uxtb #3
38bc: 1b 3e 48 d3 ubfx x27, x16, #8, #8
38c0: 28 1d 4a f9 ldr x8, [x9, #5176]
38c4: 1c 7e 50 d3 ubfx x28, x16, #16, #16
38c8: 00 01 1f d6 br x8
00000000000038cc _lj_cont_hook:
38cc: 60 80 5d f8 ldur x0, [x3, #-40]
38d0: b5 12 00 91 add x21, x21, #4
38d4: e0 23 00 b9 str w0, [sp, #32]
38d8: f7 ff ff 17 b #-36 <_lj_vm_inshook+0x38>
00000000000038dc _lj_vm_hotloop:
38dc: 62 02 5f f8 ldur x2, [x19, #-16]
38e0: c0 62 0b 91 add x0, x22, #728
38e4: 42 b8 40 92 and x2, x2, #0x7fffffffffff
38e8: f5 07 00 f9 str x21, [sp, #8]
38ec: 42 10 40 f9 ldr x2, [x2, #32]
38f0: e1 03 15 aa mov x1, x21
38f4: d7 ae 01 f9 str x23, [x22, #856]
38f8: 42 30 5a 38 ldurb w2, [x2, #-93]
38fc: f3 12 00 f9 str x19, [x23, #32]
3900: 62 0e 02 8b add x2, x19, x2, lsl #3
3904: e2 16 00 f9 str x2, [x23, #40]
3908: 00 00 00 94 bl #0 <_lj_vm_hotloop+0x2c>
390c: e9 ff ff 17 b #-92 <_lj_vm_inshook+0x34>
0000000000003910 _lj_vm_callhook:
3910: e1 03 15 aa mov x1, x21
3914: 02 00 00 14 b #8 <_lj_vm_hotcall+0x4>
0000000000003918 _lj_vm_hotcall:
3918: a1 02 40 b2 orr x1, x21, #0x1
391c: 69 02 1c 8b add x9, x19, x28
3920: f5 07 00 f9 str x21, [sp, #8]
3924: e0 03 17 aa mov x0, x23
3928: 7b 03 13 cb sub x27, x27, x19
392c: f3 26 02 a9 stp x19, x9, [x23, #32]
3930: 00 00 00 94 bl #0 <_lj_vm_hotcall+0x18>
3934: f3 26 42 a9 ldp x19, x9, [x23, #32]
3938: ff 07 00 f9 str xzr, [sp, #8]
393c: 62 02 5f f8 ldur x2, [x19, #-16]
3940: 7b 02 1b 8b add x27, x19, x27
3944: 3c 01 13 cb sub x28, x9, x19
3948: b0 c2 5f b8 ldur w16, [x21, #-4]
394c: 42 b8 40 92 and x2, x2, #0x7fffffffffff
3950: 00 00 1f d6 br x0
0000000000003954 _lj_cont_stitch:
3954: f1 23 40 b9 ldr w17, [sp, #32]
3958: b0 c2 5f b8 ldur w16, [x21, #-4]
395c: 62 80 5d f8 ldur x2, [x3, #-40]
3960: 31 22 00 f1 subs x17, x17, #8
3964: 1c 3e 48 d3 ubfx x28, x16, #8, #8
3968: 42 b8 40 92 and x2, x2, #0x7fffffffffff
396c: e0 00 00 54 b.eq #28 <_lj_cont_stitch+0x34>
3970: 60 03 40 f9 ldr x0, [x27]
3974: 7b 23 00 91 add x27, x27, #8
3978: 31 22 00 f1 subs x17, x17, #8
397c: 60 7a 3c f8 str x0, [x19, x28, lsl #3]
3980: 9c 07 00 91 add x28, x28, #1
3984: 61 ff ff 54 b.ne #-20 <_lj_cont_stitch+0x1c>
3988: 1b 3e 48 d3 ubfx x27, x16, #8, #8
398c: 11 7e 58 d3 ubfx x17, x16, #24, #8
3990: 7b 03 11 8b add x27, x27, x17
3994: 7f 03 1c eb cmp x27, x28
3998: 28 02 00 54 b.hi #68 <_lj_cont_stitch+0x88>
399c: 5b d0 40 79 ldrh w27, [x2, #104]
39a0: 5c d4 40 79 ldrh w28, [x2, #106]
39a4: 9f 03 1b 6b cmp w28, w27
39a8: 00 66 ff 54 b.eq #-4928 <_lj_cont_nop>
39ac: 9f 03 00 71 cmp w28, #0
39b0: 81 28 ff 54 b.ne #-6896 <_lj_BC_JLOOP>
39b4: 80 d1 81 52 mov w0, #3724
39b8: db 6a 20 b8 str w27, [x22, x0]
39bc: 00 6b 80 52 mov w0, #856
39c0: d7 6a 20 f8 str x23, [x22, x0]
39c4: f3 12 00 f9 str x19, [x23, #32]
39c8: c0 62 0b 91 add x0, x22, #728
39cc: e1 03 15 aa mov x1, x21
39d0: 00 00 00 94 bl #0 <_lj_cont_stitch+0x7c>
39d4: f3 12 40 f9 ldr x19, [x23, #32]
39d8: 24 fb ff 17 b #-4976 <_lj_cont_nop>
39dc: 7a 7a 3c f8 str x26, [x19, x28, lsl #3]
39e0: 9c 07 00 91 add x28, x28, #1
39e4: ec ff ff 17 b #-80 <_lj_cont_stitch+0x40>
00000000000039e8 _lj_vm_profhook:
39e8: e0 03 17 aa mov x0, x23
39ec: f3 12 00 f9 str x19, [x23, #32]
39f0: e1 03 15 aa mov x1, x21
39f4: 00 00 00 94 bl #0 <_lj_vm_profhook+0xc>
39f8: f3 12 40 f9 ldr x19, [x23, #32]
39fc: b5 12 00 d1 sub x21, x21, #4
3a00: 1a fb ff 17 b #-5016 <_lj_cont_nop>
0000000000003a04 _lj_vm_exit_handler:
3a04: ff 03 08 d1 sub sp, sp, #512
3a08: e0 07 00 6d stp d0, d1, [sp]
3a0c: e0 07 10 a9 stp x0, x1, [sp, #256]
3a10: e2 0f 01 6d stp d2, d3, [sp, #16]
3a14: e2 0f 11 a9 stp x2, x3, [sp, #272]
3a18: e4 17 02 6d stp d4, d5, [sp, #32]
3a1c: e4 17 12 a9 stp x4, x5, [sp, #288]
3a20: e6 1f 03 6d stp d6, d7, [sp, #48]
3a24: e6 1f 13 a9 stp x6, x7, [sp, #304]
3a28: e8 27 04 6d stp d8, d9, [sp, #64]
3a2c: e8 27 14 a9 stp x8, x9, [sp, #320]
3a30: ea 2f 05 6d stp d10, d11, [sp, #80]
3a34: ea 2f 15 a9 stp x10, x11, [sp, #336]
3a38: ec 37 06 6d stp d12, d13, [sp, #96]
3a3c: ec 37 16 a9 stp x12, x13, [sp, #352]
3a40: ee 3f 07 6d stp d14, d15, [sp, #112]
3a44: ee 3f 17 a9 stp x14, x15, [sp, #368]
3a48: f0 47 08 6d stp d16, d17, [sp, #128]
3a4c: f0 47 18 a9 stp x16, x17, [sp, #384]
3a50: f2 4f 09 6d stp d18, d19, [sp, #144]
3a54: f2 4f 19 a9 stp x18, x19, [sp, #400]
3a58: f4 57 0a 6d stp d20, d21, [sp, #160]
3a5c: f4 57 1a a9 stp x20, x21, [sp, #416]
3a60: f6 5f 0b 6d stp d22, d23, [sp, #176]
3a64: f6 5f 1b a9 stp x22, x23, [sp, #432]
3a68: f8 67 0c 6d stp d24, d25, [sp, #192]
3a6c: f8 67 1c a9 stp x24, x25, [sp, #448]
3a70: fa 6f 0d 6d stp d26, d27, [sp, #208]
3a74: fa 6f 1d a9 stp x26, x27, [sp, #464]
3a78: fc 77 0e 6d stp d28, d29, [sp, #224]
3a7c: fc 77 1e a9 stp x28, x29, [sp, #480]
3a80: fe 7f 0f 6d stp d30, d31, [sp, #240]
3a84: e0 03 41 f9 ldr x0, [sp, #512]
3a88: e2 03 08 91 add x2, sp, #512
3a8c: 63 00 80 12 mov w3, #-4
3a90: ff 0b 1f a9 stp xzr, x2, [sp, #496]
3a94: 00 00 1e cb sub x0, x0, x30
3a98: d7 ba 40 f9 ldr x23, [x22, #368]
3a9c: 00 fc 42 d3 lsr x0, x0, #2
3aa0: d3 be 40 f9 ldr x19, [x22, #376]
3aa4: 00 08 00 d1 sub x0, x0, #2
3aa8: c1 03 40 b9 ldr w1, [x30]
3aac: c3 ba 00 b9 str w3, [x22, #184]
3ab0: f3 12 00 f9 str x19, [x23, #32]
3ab4: 21 50 05 53 ubfx w1, w1, #5, #16
3ab8: c0 8e 0e b9 str w0, [x22, #3724]
3abc: c1 8a 0e b9 str w1, [x22, #3720]
3ac0: d7 ae 01 f9 str x23, [x22, #856]
3ac4: df be 00 f9 str xzr, [x22, #376]
3ac8: c0 62 0b 91 add x0, x22, #728
3acc: e1 03 00 91 mov x1, sp
3ad0: 00 00 00 94 bl #0 <_lj_vm_exit_handler+0xcc>
3ad4: e1 2a 40 f9 ldr x1, [x23, #80]
3ad8: f3 12 40 f9 ldr x19, [x23, #32]
3adc: 3f f4 7e 92 and sp, x1, #0xfffffffffffffffc
3ae0: f5 07 40 f9 ldr x21, [sp, #8]
3ae4: f7 0b 00 f9 str x23, [sp, #16]
3ae8: 02 00 00 14 b #8 <_lj_vm_exit_interp+0x4>
0000000000003aec _lj_vm_exit_interp:
3aec: f7 0b 40 f9 ldr x23, [sp, #16]
3af0: 1f 00 00 71 cmp w0, #0
3af4: 4b 05 00 54 b.lt #168 <_lj_vm_exit_interp+0xb0>
3af8: 1c f0 7d d3 lsl x28, x0, #3
3afc: 61 02 5f f8 ldur x1, [x19, #-16]
3b00: 38 ff ff d2 mov x24, #-1970324836974592
3b04: 39 ff bf d2 mov x25, #4294508544
3b08: 1a 00 80 92 mov x26, #-1
3b0c: 21 b8 40 92 and x1, x1, #0x7fffffffffff
3b10: fc 23 00 b9 str w28, [sp, #32]
3b14: f3 12 00 f9 str x19, [x23, #32]
3b18: 21 10 40 f9 ldr x1, [x1, #32]
3b1c: df be 00 f9 str xzr, [x22, #376]
3b20: 03 00 80 12 mov w3, #-1
3b24: 34 80 5b f8 ldur x20, [x1, #-72]
3b28: b1 02 40 39 ldrb w17, [x21]
3b2c: b0 46 40 b8 ldr w16, [x21], #4
3b30: c3 ba 00 b9 str w3, [x22, #184]
3b34: 3f 86 01 71 cmp w17, #97
3b38: c9 0e 30 8b add x9, x22, w16, uxtb #3
3b3c: a2 01 00 54 b.hs #52 <_lj_vm_exit_interp+0x84>
3b40: 3f 66 01 71 cmp w17, #89
3b44: c8 0e 31 8b add x8, x22, w17, uxtb #3
3b48: 11 b5 47 f9 ldr x17, [x8, #3944]
3b4c: 1b 3e 48 d3 ubfx x27, x16, #8, #8
3b50: 08 fe 50 d3 lsr x8, x16, #16
3b54: 1c 31 9c 9a csel x28, x8, x28, lo
3b58: a3 00 00 54 b.lo #20 <_lj_vm_exit_interp+0x80>
3b5c: 62 02 5f f8 ldur x2, [x19, #-16]
3b60: 9c 23 00 d1 sub x28, x28, #8
3b64: 7b 0e 1b 8b add x27, x19, x27, lsl #3
3b68: 42 b8 40 92 and x2, x2, #0x7fffffffffff
3b6c: 20 02 1f d6 br x17
3b70: 60 82 5f f8 ldur x0, [x19, #-8]
3b74: 01 04 40 f2 ands x1, x0, #0x3
3b78: 41 fe ff 54 b.ne #-56 <_lj_vm_exit_interp+0x54>
3b7c: 02 c0 5f b8 ldur w2, [x0, #-4]
3b80: 40 3c 48 d3 ubfx x0, x2, #8, #8
3b84: 61 0e 00 cb sub x1, x19, x0, lsl #3
3b88: 22 00 5e f8 ldur x2, [x1, #-32]
3b8c: 42 b8 40 92 and x2, x2, #0x7fffffffffff
3b90: 42 10 40 f9 ldr x2, [x2, #32]
3b94: 54 80 5b f8 ldur x20, [x2, #-72]
3b98: ea ff ff 17 b #-88 <_lj_vm_exit_interp+0x54>
3b9c: e1 03 00 4b neg w1, w0
3ba0: e0 03 17 aa mov x0, x23
3ba4: 00 00 00 94 bl #0 <_lj_vm_exit_interp+0xb8>
0000000000003ba8 _lj_vm_modi:
3ba8: 03 00 01 4a eor w3, w0, w1
3bac: 7f 00 00 71 cmp w3, #0
3bb0: 02 7c 80 4a eor w2, w0, w0, asr #31
3bb4: 23 7c 81 4a eor w3, w1, w1, asr #31
3bb8: 42 7c 80 4b sub w2, w2, w0, asr #31
3bbc: 63 7c 81 4b sub w3, w3, w1, asr #31
3bc0: 40 08 c3 1a udiv w0, w2, w3
3bc4: 00 88 03 1b msub w0, w0, w3, w2
3bc8: 04 48 40 7a ccmp w0, #0, #4, mi
3bcc: 02 00 03 4b sub w2, w0, w3
3bd0: 00 00 82 1a csel w0, w0, w2, eq
3bd4: 02 00 01 4a eor w2, w0, w1
3bd8: 5f 00 00 71 cmp w2, #0
3bdc: 00 54 80 5a cneg w0, w0, mi
3be0: c0 03 5f d6 ret
0000000000003be4 _lj_vm_ffi_callback:
3be4: ff 43 03 d1 sub sp, sp, #208
3be8: fd 7b 0c a9 stp x29, x30, [sp, #192]
3bec: fd 03 00 91 mov x29, sp
3bf0: f4 4f 0b a9 stp x20, x19, [sp, #176]
3bf4: e9 23 06 6d stp d9, d8, [sp, #96]
3bf8: f6 57 0a a9 stp x22, x21, [sp, #160]
3bfc: eb 2b 05 6d stp d11, d10, [sp, #80]
3c00: f8 5f 09 a9 stp x24, x23, [sp, #144]
3c04: ed 33 04 6d stp d13, d12, [sp, #64]
3c08: fa 67 08 a9 stp x26, x25, [sp, #128]
3c0c: ef 3b 03 6d stp d15, d14, [sp, #48]
3c10: fc 6f 07 a9 stp x28, x27, [sp, #112]
3c14: 55 c1 40 f9 ldr x21, [x10, #384]
3c18: f6 03 0a aa mov x22, x10
3c1c: ea 43 03 91 add x10, sp, #208
3c20: a9 d2 00 b9 str w9, [x21, #208]
3c24: a0 06 07 a9 stp x0, x1, [x21, #112]
3c28: a0 06 03 6d stp d0, d1, [x21, #48]
3c2c: a2 0e 08 a9 stp x2, x3, [x21, #128]
3c30: a2 0e 04 6d stp d2, d3, [x21, #64]
3c34: a4 16 09 a9 stp x4, x5, [x21, #144]
3c38: a4 16 05 6d stp d4, d5, [x21, #80]
3c3c: a6 1e 0a a9 stp x6, x7, [x21, #160]
3c40: a6 1e 06 6d stp d6, d7, [x21, #96]
3c44: aa 5a 00 f9 str x10, [x21, #176]
3c48: e0 03 15 aa mov x0, x21
3c4c: f5 07 00 f9 str x21, [sp, #8]
3c50: e1 03 00 91 mov x1, sp
3c54: 00 00 00 94 bl #0 <_lj_vm_ffi_callback+0x70>
3c58: 13 70 42 a9 ldp x19, x28, [x0, #32]
3c5c: 38 ff ff d2 mov x24, #-1970324836974592
3c60: 39 ff bf d2 mov x25, #4294508544
3c64: 1a 00 80 92 mov x26, #-1
3c68: f7 03 00 aa mov x23, x0
3c6c: 62 02 5f f8 ldur x2, [x19, #-16]
3c70: 9c 03 13 cb sub x28, x28, x19
3c74: da ba 00 b9 str w26, [x22, #184]
3c78: 42 b8 40 92 and x2, x2, #0x7fffffffffff
3c7c: 55 10 40 f9 ldr x21, [x2, #32]
3c80: b0 46 40 b8 ldr w16, [x21], #4
3c84: c9 0e 30 8b add x9, x22, w16, uxtb #3
3c88: 1b 3e 48 d3 ubfx x27, x16, #8, #8
3c8c: 28 b5 47 f9 ldr x8, [x9, #3944]
3c90: 7b 0e 1b 8b add x27, x19, x27, lsl #3
3c94: 00 01 1f d6 br x8
0000000000003c98 _lj_cont_ffi_callback:
3c98: d5 c2 40 f9 ldr x21, [x22, #384]
3c9c: f3 0e 02 a9 stp x19, x3, [x23, #32]
3ca0: b7 0a 00 f9 str x23, [x21, #16]
3ca4: e0 03 15 aa mov x0, x21
3ca8: e1 03 1b aa mov x1, x27
3cac: 00 00 00 94 bl #0 <_lj_cont_ffi_callback+0x14>
3cb0: a0 06 47 a9 ldp x0, x1, [x21, #112]
3cb4: a0 06 43 6d ldp d0, d1, [x21, #48]
3cb8: 1d f9 ff 17 b #-7052 <_lj_vm_leave_unw>
0000000000003cbc _lj_vm_ffi_call:
3cbc: f4 4f be a9 stp x20, x19, [sp, #-32]!
3cc0: fd 7b 01 a9 stp x29, x30, [sp, #16]
3cc4: fd 03 00 91 mov x29, sp
3cc8: f3 03 00 aa mov x19, x0
3ccc: 08 08 40 b9 ldr w8, [x0, #8]
3cd0: 69 32 40 39 ldrb w9, [x19, #12]
3cd4: 6a 62 02 91 add x10, x19, #152
3cd8: 29 05 00 f1 subs x9, x9, #1
3cdc: 6b 02 40 f9 ldr x11, [x19]
3ce0: bf 63 28 cb sub sp, x29, x8
3ce4: a4 00 00 54 b.mi #20 <_lj_vm_ffi_call+0x3c>
3ce8: 48 79 69 f8 ldr x8, [x10, x9, lsl #3]
3cec: e8 7b 29 f8 str x8, [sp, x9, lsl #3]
3cf0: 29 05 00 f1 subs x9, x9, #1
3cf4: a5 ff ff 54 b.pl #-12 <_lj_vm_ffi_call+0x2c>
3cf8: 60 86 45 a9 ldp x0, x1, [x19, #88]
3cfc: 60 86 41 6d ldp d0, d1, [x19, #24]
3d00: 62 8e 46 a9 ldp x2, x3, [x19, #104]
3d04: 62 8e 42 6d ldp d2, d3, [x19, #40]
3d08: 64 96 47 a9 ldp x4, x5, [x19, #120]
3d0c: 64 96 43 6d ldp d4, d5, [x19, #56]
3d10: 66 9e 48 a9 ldp x6, x7, [x19, #136]
3d14: 66 9e 44 6d ldp d6, d7, [x19, #72]
3d18: 68 0a 40 f9 ldr x8, [x19, #16]
3d1c: 60 01 3f d6 blr x11
3d20: bf 03 00 91 mov sp, x29
3d24: 60 86 05 a9 stp x0, x1, [x19, #88]
3d28: 60 86 01 6d stp d0, d1, [x19, #24]
3d2c: 62 8e 02 6d stp d2, d3, [x19, #40]
3d30: fd 7b 41 a9 ldp x29, x30, [sp, #16]
3d34: f4 4f c2 a8 ldp x20, x19, [sp], #32
3d38: c0 03 5f d6 ret
Disassembly of section __TEXT,__cstring:
0000000000003d3c ltmp1:
3d3c: 44 79 6e 41 <unknown>
3d40: 53 4d 20 31 adds w19, w10, #2067
3d44: 2e 35 2e 30 adr x14, #378533
3d48: 00 <unknown>
Disassembly of section __TEXT,__eh_frame:
0000000000003d50 ltmp2:
3d50: 1c 00 00 00 udf #28
3d54: 00 00 00 00 udf #0
3d58: 01 7a 50 52 <unknown>
3d5c: 00 01 78 1e fcvtzs w0, d8
3d60: 06 9b 00 00 udf #39686
3d64: 00 00 1b 0c <unknown>
3d68: 1f 00 00 00 udf #31
3d6c: 00 00 00 00 udf #0
0000000000003d70 _lj_BC_ISLT.eh:
3d70: 44 00 00 00 udf #68
3d74: 04 00 00 00 udf #4
3d78: f8 ff ff ff <unknown>
3d7c: 80 00 00 00 udf #128
3d80: 00 0e d0 01 <unknown>
3d84: 9e 01 9d 02 <unknown>
3d88: 93 03 94 04 <unknown>
3d8c: 95 05 96 06 <unknown>
3d90: 97 07 98 08 <unknown>
3d94: 99 09 9a 0a and w25, w12, w26, asr #2
3d98: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
3d9c: 05 48 0d 05 <unknown>
3da0: 49 0e 05 4a eor w9, w18, w5, lsl #3
3da4: 0f 05 4b 10 adr x15, #614560
3da8: 05 4c 11 05 <unknown>
3dac: 4d 12 05 4e tbx.16b v13, { v18 }, v5
3db0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bd5bc>
3db4: 00 00 00 00 udf #0
0000000000003db8 _lj_BC_ISGE.eh:
3db8: 44 00 00 00 udf #68
3dbc: 04 00 00 00 udf #4
3dc0: f8 ff ff ff <unknown>
3dc4: 80 00 00 00 udf #128
3dc8: 00 0e d0 01 <unknown>
3dcc: 9e 01 9d 02 <unknown>
3dd0: 93 03 94 04 <unknown>
3dd4: 95 05 96 06 <unknown>
3dd8: 97 07 98 08 <unknown>
3ddc: 99 09 9a 0a and w25, w12, w26, asr #2
3de0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
3de4: 05 48 0d 05 <unknown>
3de8: 49 0e 05 4a eor w9, w18, w5, lsl #3
3dec: 0f 05 4b 10 adr x15, #614560
3df0: 05 4c 11 05 <unknown>
3df4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
3df8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bd604>
3dfc: 00 00 00 00 udf #0
0000000000003e00 _lj_BC_ISLE.eh:
3e00: 44 00 00 00 udf #68
3e04: 04 00 00 00 udf #4
3e08: f8 ff ff ff <unknown>
3e0c: 80 00 00 00 udf #128
3e10: 00 0e d0 01 <unknown>
3e14: 9e 01 9d 02 <unknown>
3e18: 93 03 94 04 <unknown>
3e1c: 95 05 96 06 <unknown>
3e20: 97 07 98 08 <unknown>
3e24: 99 09 9a 0a and w25, w12, w26, asr #2
3e28: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
3e2c: 05 48 0d 05 <unknown>
3e30: 49 0e 05 4a eor w9, w18, w5, lsl #3
3e34: 0f 05 4b 10 adr x15, #614560
3e38: 05 4c 11 05 <unknown>
3e3c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
3e40: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bd64c>
3e44: 00 00 00 00 udf #0
0000000000003e48 _lj_BC_ISGT.eh:
3e48: 44 00 00 00 udf #68
3e4c: 04 00 00 00 udf #4
3e50: f8 ff ff ff <unknown>
3e54: 80 00 00 00 udf #128
3e58: 00 0e d0 01 <unknown>
3e5c: 9e 01 9d 02 <unknown>
3e60: 93 03 94 04 <unknown>
3e64: 95 05 96 06 <unknown>
3e68: 97 07 98 08 <unknown>
3e6c: 99 09 9a 0a and w25, w12, w26, asr #2
3e70: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
3e74: 05 48 0d 05 <unknown>
3e78: 49 0e 05 4a eor w9, w18, w5, lsl #3
3e7c: 0f 05 4b 10 adr x15, #614560
3e80: 05 4c 11 05 <unknown>
3e84: 4d 12 05 4e tbx.16b v13, { v18 }, v5
3e88: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bd694>
3e8c: 00 00 00 00 udf #0
0000000000003e90 _lj_BC_ISEQV.eh:
3e90: 44 00 00 00 udf #68
3e94: 04 00 00 00 udf #4
3e98: f8 ff ff ff <unknown>
3e9c: 84 00 00 00 udf #132
3ea0: 00 0e d0 01 <unknown>
3ea4: 9e 01 9d 02 <unknown>
3ea8: 93 03 94 04 <unknown>
3eac: 95 05 96 06 <unknown>
3eb0: 97 07 98 08 <unknown>
3eb4: 99 09 9a 0a and w25, w12, w26, asr #2
3eb8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
3ebc: 05 48 0d 05 <unknown>
3ec0: 49 0e 05 4a eor w9, w18, w5, lsl #3
3ec4: 0f 05 4b 10 adr x15, #614560
3ec8: 05 4c 11 05 <unknown>
3ecc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
3ed0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bd6dc>
3ed4: 00 00 00 00 udf #0
0000000000003ed8 _lj_BC_ISNEV.eh:
3ed8: 44 00 00 00 udf #68
3edc: 04 00 00 00 udf #4
3ee0: f8 ff ff ff <unknown>
3ee4: 80 00 00 00 udf #128
3ee8: 00 0e d0 01 <unknown>
3eec: 9e 01 9d 02 <unknown>
3ef0: 93 03 94 04 <unknown>
3ef4: 95 05 96 06 <unknown>
3ef8: 97 07 98 08 <unknown>
3efc: 99 09 9a 0a and w25, w12, w26, asr #2
3f00: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
3f04: 05 48 0d 05 <unknown>
3f08: 49 0e 05 4a eor w9, w18, w5, lsl #3
3f0c: 0f 05 4b 10 adr x15, #614560
3f10: 05 4c 11 05 <unknown>
3f14: 4d 12 05 4e tbx.16b v13, { v18 }, v5
3f18: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bd724>
3f1c: 00 00 00 00 udf #0
0000000000003f20 _lj_BC_ISEQS.eh:
3f20: 44 00 00 00 udf #68
3f24: 04 00 00 00 udf #4
3f28: f8 ff ff ff <unknown>
3f2c: 50 00 00 00 udf #80
3f30: 00 0e d0 01 <unknown>
3f34: 9e 01 9d 02 <unknown>
3f38: 93 03 94 04 <unknown>
3f3c: 95 05 96 06 <unknown>
3f40: 97 07 98 08 <unknown>
3f44: 99 09 9a 0a and w25, w12, w26, asr #2
3f48: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
3f4c: 05 48 0d 05 <unknown>
3f50: 49 0e 05 4a eor w9, w18, w5, lsl #3
3f54: 0f 05 4b 10 adr x15, #614560
3f58: 05 4c 11 05 <unknown>
3f5c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
3f60: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bd76c>
3f64: 00 00 00 00 udf #0
0000000000003f68 _lj_BC_ISNES.eh:
3f68: 44 00 00 00 udf #68
3f6c: 04 00 00 00 udf #4
3f70: f8 ff ff ff <unknown>
3f74: 50 00 00 00 udf #80
3f78: 00 0e d0 01 <unknown>
3f7c: 9e 01 9d 02 <unknown>
3f80: 93 03 94 04 <unknown>
3f84: 95 05 96 06 <unknown>
3f88: 97 07 98 08 <unknown>
3f8c: 99 09 9a 0a and w25, w12, w26, asr #2
3f90: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
3f94: 05 48 0d 05 <unknown>
3f98: 49 0e 05 4a eor w9, w18, w5, lsl #3
3f9c: 0f 05 4b 10 adr x15, #614560
3fa0: 05 4c 11 05 <unknown>
3fa4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
3fa8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bd7b4>
3fac: 00 00 00 00 udf #0
0000000000003fb0 _lj_BC_ISEQN.eh:
3fb0: 44 00 00 00 udf #68
3fb4: 04 00 00 00 udf #4
3fb8: f8 ff ff ff <unknown>
3fbc: 8c 00 00 00 udf #140
3fc0: 00 0e d0 01 <unknown>
3fc4: 9e 01 9d 02 <unknown>
3fc8: 93 03 94 04 <unknown>
3fcc: 95 05 96 06 <unknown>
3fd0: 97 07 98 08 <unknown>
3fd4: 99 09 9a 0a and w25, w12, w26, asr #2
3fd8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
3fdc: 05 48 0d 05 <unknown>
3fe0: 49 0e 05 4a eor w9, w18, w5, lsl #3
3fe4: 0f 05 4b 10 adr x15, #614560
3fe8: 05 4c 11 05 <unknown>
3fec: 4d 12 05 4e tbx.16b v13, { v18 }, v5
3ff0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bd7fc>
3ff4: 00 00 00 00 udf #0
0000000000003ff8 _lj_BC_ISNEN.eh:
3ff8: 44 00 00 00 udf #68
3ffc: 04 00 00 00 udf #4
4000: f8 ff ff ff <unknown>
4004: 8c 00 00 00 udf #140
4008: 00 0e d0 01 <unknown>
400c: 9e 01 9d 02 <unknown>
4010: 93 03 94 04 <unknown>
4014: 95 05 96 06 <unknown>
4018: 97 07 98 08 <unknown>
401c: 99 09 9a 0a and w25, w12, w26, asr #2
4020: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4024: 05 48 0d 05 <unknown>
4028: 49 0e 05 4a eor w9, w18, w5, lsl #3
402c: 0f 05 4b 10 adr x15, #614560
4030: 05 4c 11 05 <unknown>
4034: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4038: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bd844>
403c: 00 00 00 00 udf #0
0000000000004040 _lj_BC_ISEQP.eh:
4040: 44 00 00 00 udf #68
4044: 04 00 00 00 udf #4
4048: f8 ff ff ff <unknown>
404c: 44 00 00 00 udf #68
4050: 00 0e d0 01 <unknown>
4054: 9e 01 9d 02 <unknown>
4058: 93 03 94 04 <unknown>
405c: 95 05 96 06 <unknown>
4060: 97 07 98 08 <unknown>
4064: 99 09 9a 0a and w25, w12, w26, asr #2
4068: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
406c: 05 48 0d 05 <unknown>
4070: 49 0e 05 4a eor w9, w18, w5, lsl #3
4074: 0f 05 4b 10 adr x15, #614560
4078: 05 4c 11 05 <unknown>
407c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4080: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bd88c>
4084: 00 00 00 00 udf #0
0000000000004088 _lj_BC_ISNEP.eh:
4088: 44 00 00 00 udf #68
408c: 04 00 00 00 udf #4
4090: f8 ff ff ff <unknown>
4094: 44 00 00 00 udf #68
4098: 00 0e d0 01 <unknown>
409c: 9e 01 9d 02 <unknown>
40a0: 93 03 94 04 <unknown>
40a4: 95 05 96 06 <unknown>
40a8: 97 07 98 08 <unknown>
40ac: 99 09 9a 0a and w25, w12, w26, asr #2
40b0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
40b4: 05 48 0d 05 <unknown>
40b8: 49 0e 05 4a eor w9, w18, w5, lsl #3
40bc: 0f 05 4b 10 adr x15, #614560
40c0: 05 4c 11 05 <unknown>
40c4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
40c8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bd8d4>
40cc: 00 00 00 00 udf #0
00000000000040d0 _lj_BC_ISTC.eh:
40d0: 44 00 00 00 udf #68
40d4: 04 00 00 00 udf #4
40d8: f8 ff ff ff <unknown>
40dc: 40 00 00 00 udf #64
40e0: 00 0e d0 01 <unknown>
40e4: 9e 01 9d 02 <unknown>
40e8: 93 03 94 04 <unknown>
40ec: 95 05 96 06 <unknown>
40f0: 97 07 98 08 <unknown>
40f4: 99 09 9a 0a and w25, w12, w26, asr #2
40f8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
40fc: 05 48 0d 05 <unknown>
4100: 49 0e 05 4a eor w9, w18, w5, lsl #3
4104: 0f 05 4b 10 adr x15, #614560
4108: 05 4c 11 05 <unknown>
410c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4110: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bd91c>
4114: 00 00 00 00 udf #0
0000000000004118 _lj_BC_ISFC.eh:
4118: 44 00 00 00 udf #68
411c: 04 00 00 00 udf #4
4120: f8 ff ff ff <unknown>
4124: 40 00 00 00 udf #64
4128: 00 0e d0 01 <unknown>
412c: 9e 01 9d 02 <unknown>
4130: 93 03 94 04 <unknown>
4134: 95 05 96 06 <unknown>
4138: 97 07 98 08 <unknown>
413c: 99 09 9a 0a and w25, w12, w26, asr #2
4140: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4144: 05 48 0d 05 <unknown>
4148: 49 0e 05 4a eor w9, w18, w5, lsl #3
414c: 0f 05 4b 10 adr x15, #614560
4150: 05 4c 11 05 <unknown>
4154: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4158: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bd964>
415c: 00 00 00 00 udf #0
0000000000004160 _lj_BC_IST.eh:
4160: 44 00 00 00 udf #68
4164: 04 00 00 00 udf #4
4168: f8 ff ff ff <unknown>
416c: 38 00 00 00 udf #56
4170: 00 0e d0 01 <unknown>
4174: 9e 01 9d 02 <unknown>
4178: 93 03 94 04 <unknown>
417c: 95 05 96 06 <unknown>
4180: 97 07 98 08 <unknown>
4184: 99 09 9a 0a and w25, w12, w26, asr #2
4188: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
418c: 05 48 0d 05 <unknown>
4190: 49 0e 05 4a eor w9, w18, w5, lsl #3
4194: 0f 05 4b 10 adr x15, #614560
4198: 05 4c 11 05 <unknown>
419c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
41a0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bd9ac>
41a4: 00 00 00 00 udf #0
00000000000041a8 _lj_BC_ISF.eh:
41a8: 44 00 00 00 udf #68
41ac: 04 00 00 00 udf #4
41b0: f8 ff ff ff <unknown>
41b4: 38 00 00 00 udf #56
41b8: 00 0e d0 01 <unknown>
41bc: 9e 01 9d 02 <unknown>
41c0: 93 03 94 04 <unknown>
41c4: 95 05 96 06 <unknown>
41c8: 97 07 98 08 <unknown>
41cc: 99 09 9a 0a and w25, w12, w26, asr #2
41d0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
41d4: 05 48 0d 05 <unknown>
41d8: 49 0e 05 4a eor w9, w18, w5, lsl #3
41dc: 0f 05 4b 10 adr x15, #614560
41e0: 05 4c 11 05 <unknown>
41e4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
41e8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bd9f4>
41ec: 00 00 00 00 udf #0
00000000000041f0 _lj_BC_ISTYPE.eh:
41f0: 44 00 00 00 udf #68
41f4: 04 00 00 00 udf #4
41f8: f8 ff ff ff <unknown>
41fc: 24 00 00 00 udf #36
4200: 00 0e d0 01 <unknown>
4204: 9e 01 9d 02 <unknown>
4208: 93 03 94 04 <unknown>
420c: 95 05 96 06 <unknown>
4210: 97 07 98 08 <unknown>
4214: 99 09 9a 0a and w25, w12, w26, asr #2
4218: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
421c: 05 48 0d 05 <unknown>
4220: 49 0e 05 4a eor w9, w18, w5, lsl #3
4224: 0f 05 4b 10 adr x15, #614560
4228: 05 4c 11 05 <unknown>
422c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4230: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bda3c>
4234: 00 00 00 00 udf #0
0000000000004238 _lj_BC_ISNUM.eh:
4238: 44 00 00 00 udf #68
423c: 04 00 00 00 udf #4
4240: f8 ff ff ff <unknown>
4244: 24 00 00 00 udf #36
4248: 00 0e d0 01 <unknown>
424c: 9e 01 9d 02 <unknown>
4250: 93 03 94 04 <unknown>
4254: 95 05 96 06 <unknown>
4258: 97 07 98 08 <unknown>
425c: 99 09 9a 0a and w25, w12, w26, asr #2
4260: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4264: 05 48 0d 05 <unknown>
4268: 49 0e 05 4a eor w9, w18, w5, lsl #3
426c: 0f 05 4b 10 adr x15, #614560
4270: 05 4c 11 05 <unknown>
4274: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4278: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bda84>
427c: 00 00 00 00 udf #0
0000000000004280 _lj_BC_MOV.eh:
4280: 44 00 00 00 udf #68
4284: 04 00 00 00 udf #4
4288: f8 ff ff ff <unknown>
428c: 20 00 00 00 udf #32
4290: 00 0e d0 01 <unknown>
4294: 9e 01 9d 02 <unknown>
4298: 93 03 94 04 <unknown>
429c: 95 05 96 06 <unknown>
42a0: 97 07 98 08 <unknown>
42a4: 99 09 9a 0a and w25, w12, w26, asr #2
42a8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
42ac: 05 48 0d 05 <unknown>
42b0: 49 0e 05 4a eor w9, w18, w5, lsl #3
42b4: 0f 05 4b 10 adr x15, #614560
42b8: 05 4c 11 05 <unknown>
42bc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
42c0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdacc>
42c4: 00 00 00 00 udf #0
00000000000042c8 _lj_BC_NOT.eh:
42c8: 44 00 00 00 udf #68
42cc: 04 00 00 00 udf #4
42d0: f8 ff ff ff <unknown>
42d4: 30 00 00 00 udf #48
42d8: 00 0e d0 01 <unknown>
42dc: 9e 01 9d 02 <unknown>
42e0: 93 03 94 04 <unknown>
42e4: 95 05 96 06 <unknown>
42e8: 97 07 98 08 <unknown>
42ec: 99 09 9a 0a and w25, w12, w26, asr #2
42f0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
42f4: 05 48 0d 05 <unknown>
42f8: 49 0e 05 4a eor w9, w18, w5, lsl #3
42fc: 0f 05 4b 10 adr x15, #614560
4300: 05 4c 11 05 <unknown>
4304: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4308: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdb14>
430c: 00 00 00 00 udf #0
0000000000004310 _lj_BC_UNM.eh:
4310: 44 00 00 00 udf #68
4314: 04 00 00 00 udf #4
4318: f8 ff ff ff <unknown>
431c: 44 00 00 00 udf #68
4320: 00 0e d0 01 <unknown>
4324: 9e 01 9d 02 <unknown>
4328: 93 03 94 04 <unknown>
432c: 95 05 96 06 <unknown>
4330: 97 07 98 08 <unknown>
4334: 99 09 9a 0a and w25, w12, w26, asr #2
4338: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
433c: 05 48 0d 05 <unknown>
4340: 49 0e 05 4a eor w9, w18, w5, lsl #3
4344: 0f 05 4b 10 adr x15, #614560
4348: 05 4c 11 05 <unknown>
434c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4350: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdb5c>
4354: 00 00 00 00 udf #0
0000000000004358 _lj_BC_LEN.eh:
4358: 44 00 00 00 udf #68
435c: 04 00 00 00 udf #4
4360: f8 ff ff ff <unknown>
4364: 48 00 00 00 udf #72
4368: 00 0e d0 01 <unknown>
436c: 9e 01 9d 02 <unknown>
4370: 93 03 94 04 <unknown>
4374: 95 05 96 06 <unknown>
4378: 97 07 98 08 <unknown>
437c: 99 09 9a 0a and w25, w12, w26, asr #2
4380: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4384: 05 48 0d 05 <unknown>
4388: 49 0e 05 4a eor w9, w18, w5, lsl #3
438c: 0f 05 4b 10 adr x15, #614560
4390: 05 4c 11 05 <unknown>
4394: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4398: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdba4>
439c: 00 00 00 00 udf #0
00000000000043a0 _lj_BC_ADDVN.eh:
43a0: 44 00 00 00 udf #68
43a4: 04 00 00 00 udf #4
43a8: f8 ff ff ff <unknown>
43ac: 6c 00 00 00 udf #108
43b0: 00 0e d0 01 <unknown>
43b4: 9e 01 9d 02 <unknown>
43b8: 93 03 94 04 <unknown>
43bc: 95 05 96 06 <unknown>
43c0: 97 07 98 08 <unknown>
43c4: 99 09 9a 0a and w25, w12, w26, asr #2
43c8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
43cc: 05 48 0d 05 <unknown>
43d0: 49 0e 05 4a eor w9, w18, w5, lsl #3
43d4: 0f 05 4b 10 adr x15, #614560
43d8: 05 4c 11 05 <unknown>
43dc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
43e0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdbec>
43e4: 00 00 00 00 udf #0
00000000000043e8 _lj_BC_SUBVN.eh:
43e8: 44 00 00 00 udf #68
43ec: 04 00 00 00 udf #4
43f0: f8 ff ff ff <unknown>
43f4: 6c 00 00 00 udf #108
43f8: 00 0e d0 01 <unknown>
43fc: 9e 01 9d 02 <unknown>
4400: 93 03 94 04 <unknown>
4404: 95 05 96 06 <unknown>
4408: 97 07 98 08 <unknown>
440c: 99 09 9a 0a and w25, w12, w26, asr #2
4410: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4414: 05 48 0d 05 <unknown>
4418: 49 0e 05 4a eor w9, w18, w5, lsl #3
441c: 0f 05 4b 10 adr x15, #614560
4420: 05 4c 11 05 <unknown>
4424: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4428: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdc34>
442c: 00 00 00 00 udf #0
0000000000004430 _lj_BC_MULVN.eh:
4430: 44 00 00 00 udf #68
4434: 04 00 00 00 udf #4
4438: f8 ff ff ff <unknown>
443c: 74 00 00 00 udf #116
4440: 00 0e d0 01 <unknown>
4444: 9e 01 9d 02 <unknown>
4448: 93 03 94 04 <unknown>
444c: 95 05 96 06 <unknown>
4450: 97 07 98 08 <unknown>
4454: 99 09 9a 0a and w25, w12, w26, asr #2
4458: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
445c: 05 48 0d 05 <unknown>
4460: 49 0e 05 4a eor w9, w18, w5, lsl #3
4464: 0f 05 4b 10 adr x15, #614560
4468: 05 4c 11 05 <unknown>
446c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4470: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdc7c>
4474: 00 00 00 00 udf #0
0000000000004478 _lj_BC_DIVVN.eh:
4478: 44 00 00 00 udf #68
447c: 04 00 00 00 udf #4
4480: f8 ff ff ff <unknown>
4484: 48 00 00 00 udf #72
4488: 00 0e d0 01 <unknown>
448c: 9e 01 9d 02 <unknown>
4490: 93 03 94 04 <unknown>
4494: 95 05 96 06 <unknown>
4498: 97 07 98 08 <unknown>
449c: 99 09 9a 0a and w25, w12, w26, asr #2
44a0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
44a4: 05 48 0d 05 <unknown>
44a8: 49 0e 05 4a eor w9, w18, w5, lsl #3
44ac: 0f 05 4b 10 adr x15, #614560
44b0: 05 4c 11 05 <unknown>
44b4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
44b8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdcc4>
44bc: 00 00 00 00 udf #0
00000000000044c0 _lj_BC_MODVN.eh:
44c0: 44 00 00 00 udf #68
44c4: 04 00 00 00 udf #4
44c8: f8 ff ff ff <unknown>
44cc: 74 00 00 00 udf #116
44d0: 00 0e d0 01 <unknown>
44d4: 9e 01 9d 02 <unknown>
44d8: 93 03 94 04 <unknown>
44dc: 95 05 96 06 <unknown>
44e0: 97 07 98 08 <unknown>
44e4: 99 09 9a 0a and w25, w12, w26, asr #2
44e8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
44ec: 05 48 0d 05 <unknown>
44f0: 49 0e 05 4a eor w9, w18, w5, lsl #3
44f4: 0f 05 4b 10 adr x15, #614560
44f8: 05 4c 11 05 <unknown>
44fc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4500: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdd0c>
4504: 00 00 00 00 udf #0
0000000000004508 _lj_BC_ADDNV.eh:
4508: 44 00 00 00 udf #68
450c: 04 00 00 00 udf #4
4510: f8 ff ff ff <unknown>
4514: 6c 00 00 00 udf #108
4518: 00 0e d0 01 <unknown>
451c: 9e 01 9d 02 <unknown>
4520: 93 03 94 04 <unknown>
4524: 95 05 96 06 <unknown>
4528: 97 07 98 08 <unknown>
452c: 99 09 9a 0a and w25, w12, w26, asr #2
4530: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4534: 05 48 0d 05 <unknown>
4538: 49 0e 05 4a eor w9, w18, w5, lsl #3
453c: 0f 05 4b 10 adr x15, #614560
4540: 05 4c 11 05 <unknown>
4544: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4548: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdd54>
454c: 00 00 00 00 udf #0
0000000000004550 _lj_BC_SUBNV.eh:
4550: 44 00 00 00 udf #68
4554: 04 00 00 00 udf #4
4558: f8 ff ff ff <unknown>
455c: 6c 00 00 00 udf #108
4560: 00 0e d0 01 <unknown>
4564: 9e 01 9d 02 <unknown>
4568: 93 03 94 04 <unknown>
456c: 95 05 96 06 <unknown>
4570: 97 07 98 08 <unknown>
4574: 99 09 9a 0a and w25, w12, w26, asr #2
4578: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
457c: 05 48 0d 05 <unknown>
4580: 49 0e 05 4a eor w9, w18, w5, lsl #3
4584: 0f 05 4b 10 adr x15, #614560
4588: 05 4c 11 05 <unknown>
458c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4590: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdd9c>
4594: 00 00 00 00 udf #0
0000000000004598 _lj_BC_MULNV.eh:
4598: 44 00 00 00 udf #68
459c: 04 00 00 00 udf #4
45a0: f8 ff ff ff <unknown>
45a4: 74 00 00 00 udf #116
45a8: 00 0e d0 01 <unknown>
45ac: 9e 01 9d 02 <unknown>
45b0: 93 03 94 04 <unknown>
45b4: 95 05 96 06 <unknown>
45b8: 97 07 98 08 <unknown>
45bc: 99 09 9a 0a and w25, w12, w26, asr #2
45c0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
45c4: 05 48 0d 05 <unknown>
45c8: 49 0e 05 4a eor w9, w18, w5, lsl #3
45cc: 0f 05 4b 10 adr x15, #614560
45d0: 05 4c 11 05 <unknown>
45d4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
45d8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdde4>
45dc: 00 00 00 00 udf #0
00000000000045e0 _lj_BC_DIVNV.eh:
45e0: 44 00 00 00 udf #68
45e4: 04 00 00 00 udf #4
45e8: f8 ff ff ff <unknown>
45ec: 48 00 00 00 udf #72
45f0: 00 0e d0 01 <unknown>
45f4: 9e 01 9d 02 <unknown>
45f8: 93 03 94 04 <unknown>
45fc: 95 05 96 06 <unknown>
4600: 97 07 98 08 <unknown>
4604: 99 09 9a 0a and w25, w12, w26, asr #2
4608: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
460c: 05 48 0d 05 <unknown>
4610: 49 0e 05 4a eor w9, w18, w5, lsl #3
4614: 0f 05 4b 10 adr x15, #614560
4618: 05 4c 11 05 <unknown>
461c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4620: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bde2c>
4624: 00 00 00 00 udf #0
0000000000004628 _lj_BC_MODNV.eh:
4628: 44 00 00 00 udf #68
462c: 04 00 00 00 udf #4
4630: f8 ff ff ff <unknown>
4634: 74 00 00 00 udf #116
4638: 00 0e d0 01 <unknown>
463c: 9e 01 9d 02 <unknown>
4640: 93 03 94 04 <unknown>
4644: 95 05 96 06 <unknown>
4648: 97 07 98 08 <unknown>
464c: 99 09 9a 0a and w25, w12, w26, asr #2
4650: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4654: 05 48 0d 05 <unknown>
4658: 49 0e 05 4a eor w9, w18, w5, lsl #3
465c: 0f 05 4b 10 adr x15, #614560
4660: 05 4c 11 05 <unknown>
4664: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4668: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bde74>
466c: 00 00 00 00 udf #0
0000000000004670 _lj_BC_ADDVV.eh:
4670: 44 00 00 00 udf #68
4674: 04 00 00 00 udf #4
4678: f8 ff ff ff <unknown>
467c: 6c 00 00 00 udf #108
4680: 00 0e d0 01 <unknown>
4684: 9e 01 9d 02 <unknown>
4688: 93 03 94 04 <unknown>
468c: 95 05 96 06 <unknown>
4690: 97 07 98 08 <unknown>
4694: 99 09 9a 0a and w25, w12, w26, asr #2
4698: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
469c: 05 48 0d 05 <unknown>
46a0: 49 0e 05 4a eor w9, w18, w5, lsl #3
46a4: 0f 05 4b 10 adr x15, #614560
46a8: 05 4c 11 05 <unknown>
46ac: 4d 12 05 4e tbx.16b v13, { v18 }, v5
46b0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdebc>
46b4: 00 00 00 00 udf #0
00000000000046b8 _lj_BC_SUBVV.eh:
46b8: 44 00 00 00 udf #68
46bc: 04 00 00 00 udf #4
46c0: f8 ff ff ff <unknown>
46c4: 6c 00 00 00 udf #108
46c8: 00 0e d0 01 <unknown>
46cc: 9e 01 9d 02 <unknown>
46d0: 93 03 94 04 <unknown>
46d4: 95 05 96 06 <unknown>
46d8: 97 07 98 08 <unknown>
46dc: 99 09 9a 0a and w25, w12, w26, asr #2
46e0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
46e4: 05 48 0d 05 <unknown>
46e8: 49 0e 05 4a eor w9, w18, w5, lsl #3
46ec: 0f 05 4b 10 adr x15, #614560
46f0: 05 4c 11 05 <unknown>
46f4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
46f8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdf04>
46fc: 00 00 00 00 udf #0
0000000000004700 _lj_BC_MULVV.eh:
4700: 44 00 00 00 udf #68
4704: 04 00 00 00 udf #4
4708: f8 ff ff ff <unknown>
470c: 74 00 00 00 udf #116
4710: 00 0e d0 01 <unknown>
4714: 9e 01 9d 02 <unknown>
4718: 93 03 94 04 <unknown>
471c: 95 05 96 06 <unknown>
4720: 97 07 98 08 <unknown>
4724: 99 09 9a 0a and w25, w12, w26, asr #2
4728: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
472c: 05 48 0d 05 <unknown>
4730: 49 0e 05 4a eor w9, w18, w5, lsl #3
4734: 0f 05 4b 10 adr x15, #614560
4738: 05 4c 11 05 <unknown>
473c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4740: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdf4c>
4744: 00 00 00 00 udf #0
0000000000004748 _lj_BC_DIVVV.eh:
4748: 44 00 00 00 udf #68
474c: 04 00 00 00 udf #4
4750: f8 ff ff ff <unknown>
4754: 48 00 00 00 udf #72
4758: 00 0e d0 01 <unknown>
475c: 9e 01 9d 02 <unknown>
4760: 93 03 94 04 <unknown>
4764: 95 05 96 06 <unknown>
4768: 97 07 98 08 <unknown>
476c: 99 09 9a 0a and w25, w12, w26, asr #2
4770: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4774: 05 48 0d 05 <unknown>
4778: 49 0e 05 4a eor w9, w18, w5, lsl #3
477c: 0f 05 4b 10 adr x15, #614560
4780: 05 4c 11 05 <unknown>
4784: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4788: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdf94>
478c: 00 00 00 00 udf #0
0000000000004790 _lj_BC_MODVV.eh:
4790: 44 00 00 00 udf #68
4794: 04 00 00 00 udf #4
4798: f8 ff ff ff <unknown>
479c: 74 00 00 00 udf #116
47a0: 00 0e d0 01 <unknown>
47a4: 9e 01 9d 02 <unknown>
47a8: 93 03 94 04 <unknown>
47ac: 95 05 96 06 <unknown>
47b0: 97 07 98 08 <unknown>
47b4: 99 09 9a 0a and w25, w12, w26, asr #2
47b8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
47bc: 05 48 0d 05 <unknown>
47c0: 49 0e 05 4a eor w9, w18, w5, lsl #3
47c4: 0f 05 4b 10 adr x15, #614560
47c8: 05 4c 11 05 <unknown>
47cc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
47d0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bdfdc>
47d4: 00 00 00 00 udf #0
00000000000047d8 _lj_BC_POW.eh:
47d8: 44 00 00 00 udf #68
47dc: 04 00 00 00 udf #4
47e0: f8 ff ff ff <unknown>
47e4: 48 00 00 00 udf #72
47e8: 00 0e d0 01 <unknown>
47ec: 9e 01 9d 02 <unknown>
47f0: 93 03 94 04 <unknown>
47f4: 95 05 96 06 <unknown>
47f8: 97 07 98 08 <unknown>
47fc: 99 09 9a 0a and w25, w12, w26, asr #2
4800: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4804: 05 48 0d 05 <unknown>
4808: 49 0e 05 4a eor w9, w18, w5, lsl #3
480c: 0f 05 4b 10 adr x15, #614560
4810: 05 4c 11 05 <unknown>
4814: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4818: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be024>
481c: 00 00 00 00 udf #0
0000000000004820 _lj_BC_CAT.eh:
4820: 44 00 00 00 udf #68
4824: 04 00 00 00 udf #4
4828: f8 ff ff ff <unknown>
482c: 4c 00 00 00 udf #76
4830: 00 0e d0 01 <unknown>
4834: 9e 01 9d 02 <unknown>
4838: 93 03 94 04 <unknown>
483c: 95 05 96 06 <unknown>
4840: 97 07 98 08 <unknown>
4844: 99 09 9a 0a and w25, w12, w26, asr #2
4848: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
484c: 05 48 0d 05 <unknown>
4850: 49 0e 05 4a eor w9, w18, w5, lsl #3
4854: 0f 05 4b 10 adr x15, #614560
4858: 05 4c 11 05 <unknown>
485c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4860: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be06c>
4864: 00 00 00 00 udf #0
0000000000004868 _lj_BC_KSTR.eh:
4868: 44 00 00 00 udf #68
486c: 04 00 00 00 udf #4
4870: f8 ff ff ff <unknown>
4874: 2c 00 00 00 udf #44
4878: 00 0e d0 01 <unknown>
487c: 9e 01 9d 02 <unknown>
4880: 93 03 94 04 <unknown>
4884: 95 05 96 06 <unknown>
4888: 97 07 98 08 <unknown>
488c: 99 09 9a 0a and w25, w12, w26, asr #2
4890: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4894: 05 48 0d 05 <unknown>
4898: 49 0e 05 4a eor w9, w18, w5, lsl #3
489c: 0f 05 4b 10 adr x15, #614560
48a0: 05 4c 11 05 <unknown>
48a4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
48a8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be0b4>
48ac: 00 00 00 00 udf #0
00000000000048b0 _lj_BC_KCDATA.eh:
48b0: 44 00 00 00 udf #68
48b4: 04 00 00 00 udf #4
48b8: f8 ff ff ff <unknown>
48bc: 2c 00 00 00 udf #44
48c0: 00 0e d0 01 <unknown>
48c4: 9e 01 9d 02 <unknown>
48c8: 93 03 94 04 <unknown>
48cc: 95 05 96 06 <unknown>
48d0: 97 07 98 08 <unknown>
48d4: 99 09 9a 0a and w25, w12, w26, asr #2
48d8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
48dc: 05 48 0d 05 <unknown>
48e0: 49 0e 05 4a eor w9, w18, w5, lsl #3
48e4: 0f 05 4b 10 adr x15, #614560
48e8: 05 4c 11 05 <unknown>
48ec: 4d 12 05 4e tbx.16b v13, { v18 }, v5
48f0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be0fc>
48f4: 00 00 00 00 udf #0
00000000000048f8 _lj_BC_KSHORT.eh:
48f8: 44 00 00 00 udf #68
48fc: 04 00 00 00 udf #4
4900: f8 ff ff ff <unknown>
4904: 24 00 00 00 udf #36
4908: 00 0e d0 01 <unknown>
490c: 9e 01 9d 02 <unknown>
4910: 93 03 94 04 <unknown>
4914: 95 05 96 06 <unknown>
4918: 97 07 98 08 <unknown>
491c: 99 09 9a 0a and w25, w12, w26, asr #2
4920: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4924: 05 48 0d 05 <unknown>
4928: 49 0e 05 4a eor w9, w18, w5, lsl #3
492c: 0f 05 4b 10 adr x15, #614560
4930: 05 4c 11 05 <unknown>
4934: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4938: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be144>
493c: 00 00 00 00 udf #0
0000000000004940 _lj_BC_KNUM.eh:
4940: 44 00 00 00 udf #68
4944: 04 00 00 00 udf #4
4948: f8 ff ff ff <unknown>
494c: 20 00 00 00 udf #32
4950: 00 0e d0 01 <unknown>
4954: 9e 01 9d 02 <unknown>
4958: 93 03 94 04 <unknown>
495c: 95 05 96 06 <unknown>
4960: 97 07 98 08 <unknown>
4964: 99 09 9a 0a and w25, w12, w26, asr #2
4968: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
496c: 05 48 0d 05 <unknown>
4970: 49 0e 05 4a eor w9, w18, w5, lsl #3
4974: 0f 05 4b 10 adr x15, #614560
4978: 05 4c 11 05 <unknown>
497c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4980: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be18c>
4984: 00 00 00 00 udf #0
0000000000004988 _lj_BC_KPRI.eh:
4988: 44 00 00 00 udf #68
498c: 04 00 00 00 udf #4
4990: f8 ff ff ff <unknown>
4994: 20 00 00 00 udf #32
4998: 00 0e d0 01 <unknown>
499c: 9e 01 9d 02 <unknown>
49a0: 93 03 94 04 <unknown>
49a4: 95 05 96 06 <unknown>
49a8: 97 07 98 08 <unknown>
49ac: 99 09 9a 0a and w25, w12, w26, asr #2
49b0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
49b4: 05 48 0d 05 <unknown>
49b8: 49 0e 05 4a eor w9, w18, w5, lsl #3
49bc: 0f 05 4b 10 adr x15, #614560
49c0: 05 4c 11 05 <unknown>
49c4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
49c8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be1d4>
49cc: 00 00 00 00 udf #0
00000000000049d0 _lj_BC_KNIL.eh:
49d0: 44 00 00 00 udf #68
49d4: 04 00 00 00 udf #4
49d8: f8 ff ff ff <unknown>
49dc: 30 00 00 00 udf #48
49e0: 00 0e d0 01 <unknown>
49e4: 9e 01 9d 02 <unknown>
49e8: 93 03 94 04 <unknown>
49ec: 95 05 96 06 <unknown>
49f0: 97 07 98 08 <unknown>
49f4: 99 09 9a 0a and w25, w12, w26, asr #2
49f8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
49fc: 05 48 0d 05 <unknown>
4a00: 49 0e 05 4a eor w9, w18, w5, lsl #3
4a04: 0f 05 4b 10 adr x15, #614560
4a08: 05 4c 11 05 <unknown>
4a0c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4a10: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be21c>
4a14: 00 00 00 00 udf #0
0000000000004a18 _lj_BC_UGET.eh:
4a18: 44 00 00 00 udf #68
4a1c: 04 00 00 00 udf #4
4a20: f8 ff ff ff <unknown>
4a24: 34 00 00 00 udf #52
4a28: 00 0e d0 01 <unknown>
4a2c: 9e 01 9d 02 <unknown>
4a30: 93 03 94 04 <unknown>
4a34: 95 05 96 06 <unknown>
4a38: 97 07 98 08 <unknown>
4a3c: 99 09 9a 0a and w25, w12, w26, asr #2
4a40: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4a44: 05 48 0d 05 <unknown>
4a48: 49 0e 05 4a eor w9, w18, w5, lsl #3
4a4c: 0f 05 4b 10 adr x15, #614560
4a50: 05 4c 11 05 <unknown>
4a54: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4a58: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be264>
4a5c: 00 00 00 00 udf #0
0000000000004a60 _lj_BC_USETV.eh:
4a60: 44 00 00 00 udf #68
4a64: 04 00 00 00 udf #4
4a68: f8 ff ff ff <unknown>
4a6c: 70 00 00 00 udf #112
4a70: 00 0e d0 01 <unknown>
4a74: 9e 01 9d 02 <unknown>
4a78: 93 03 94 04 <unknown>
4a7c: 95 05 96 06 <unknown>
4a80: 97 07 98 08 <unknown>
4a84: 99 09 9a 0a and w25, w12, w26, asr #2
4a88: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4a8c: 05 48 0d 05 <unknown>
4a90: 49 0e 05 4a eor w9, w18, w5, lsl #3
4a94: 0f 05 4b 10 adr x15, #614560
4a98: 05 4c 11 05 <unknown>
4a9c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4aa0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be2ac>
4aa4: 00 00 00 00 udf #0
0000000000004aa8 _lj_BC_USETS.eh:
4aa8: 44 00 00 00 udf #68
4aac: 04 00 00 00 udf #4
4ab0: f8 ff ff ff <unknown>
4ab4: 68 00 00 00 udf #104
4ab8: 00 0e d0 01 <unknown>
4abc: 9e 01 9d 02 <unknown>
4ac0: 93 03 94 04 <unknown>
4ac4: 95 05 96 06 <unknown>
4ac8: 97 07 98 08 <unknown>
4acc: 99 09 9a 0a and w25, w12, w26, asr #2
4ad0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4ad4: 05 48 0d 05 <unknown>
4ad8: 49 0e 05 4a eor w9, w18, w5, lsl #3
4adc: 0f 05 4b 10 adr x15, #614560
4ae0: 05 4c 11 05 <unknown>
4ae4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4ae8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be2f4>
4aec: 00 00 00 00 udf #0
0000000000004af0 _lj_BC_USETN.eh:
4af0: 44 00 00 00 udf #68
4af4: 04 00 00 00 udf #4
4af8: f8 ff ff ff <unknown>
4afc: 34 00 00 00 udf #52
4b00: 00 0e d0 01 <unknown>
4b04: 9e 01 9d 02 <unknown>
4b08: 93 03 94 04 <unknown>
4b0c: 95 05 96 06 <unknown>
4b10: 97 07 98 08 <unknown>
4b14: 99 09 9a 0a and w25, w12, w26, asr #2
4b18: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4b1c: 05 48 0d 05 <unknown>
4b20: 49 0e 05 4a eor w9, w18, w5, lsl #3
4b24: 0f 05 4b 10 adr x15, #614560
4b28: 05 4c 11 05 <unknown>
4b2c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4b30: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be33c>
4b34: 00 00 00 00 udf #0
0000000000004b38 _lj_BC_USETP.eh:
4b38: 44 00 00 00 udf #68
4b3c: 04 00 00 00 udf #4
4b40: f8 ff ff ff <unknown>
4b44: 34 00 00 00 udf #52
4b48: 00 0e d0 01 <unknown>
4b4c: 9e 01 9d 02 <unknown>
4b50: 93 03 94 04 <unknown>
4b54: 95 05 96 06 <unknown>
4b58: 97 07 98 08 <unknown>
4b5c: 99 09 9a 0a and w25, w12, w26, asr #2
4b60: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4b64: 05 48 0d 05 <unknown>
4b68: 49 0e 05 4a eor w9, w18, w5, lsl #3
4b6c: 0f 05 4b 10 adr x15, #614560
4b70: 05 4c 11 05 <unknown>
4b74: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4b78: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be384>
4b7c: 00 00 00 00 udf #0
0000000000004b80 _lj_BC_UCLO.eh:
4b80: 44 00 00 00 udf #68
4b84: 04 00 00 00 udf #4
4b88: f8 ff ff ff <unknown>
4b8c: 3c 00 00 00 udf #60
4b90: 00 0e d0 01 <unknown>
4b94: 9e 01 9d 02 <unknown>
4b98: 93 03 94 04 <unknown>
4b9c: 95 05 96 06 <unknown>
4ba0: 97 07 98 08 <unknown>
4ba4: 99 09 9a 0a and w25, w12, w26, asr #2
4ba8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4bac: 05 48 0d 05 <unknown>
4bb0: 49 0e 05 4a eor w9, w18, w5, lsl #3
4bb4: 0f 05 4b 10 adr x15, #614560
4bb8: 05 4c 11 05 <unknown>
4bbc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4bc0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be3cc>
4bc4: 00 00 00 00 udf #0
0000000000004bc8 _lj_BC_FNEW.eh:
4bc8: 44 00 00 00 udf #68
4bcc: 04 00 00 00 udf #4
4bd0: f8 ff ff ff <unknown>
4bd4: 48 00 00 00 udf #72
4bd8: 00 0e d0 01 <unknown>
4bdc: 9e 01 9d 02 <unknown>
4be0: 93 03 94 04 <unknown>
4be4: 95 05 96 06 <unknown>
4be8: 97 07 98 08 <unknown>
4bec: 99 09 9a 0a and w25, w12, w26, asr #2
4bf0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4bf4: 05 48 0d 05 <unknown>
4bf8: 49 0e 05 4a eor w9, w18, w5, lsl #3
4bfc: 0f 05 4b 10 adr x15, #614560
4c00: 05 4c 11 05 <unknown>
4c04: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4c08: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be414>
4c0c: 00 00 00 00 udf #0
0000000000004c10 _lj_BC_TNEW.eh:
4c10: 44 00 00 00 udf #68
4c14: 04 00 00 00 udf #4
4c18: f8 ff ff ff <unknown>
4c1c: 60 00 00 00 udf #96
4c20: 00 0e d0 01 <unknown>
4c24: 9e 01 9d 02 <unknown>
4c28: 93 03 94 04 <unknown>
4c2c: 95 05 96 06 <unknown>
4c30: 97 07 98 08 <unknown>
4c34: 99 09 9a 0a and w25, w12, w26, asr #2
4c38: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4c3c: 05 48 0d 05 <unknown>
4c40: 49 0e 05 4a eor w9, w18, w5, lsl #3
4c44: 0f 05 4b 10 adr x15, #614560
4c48: 05 4c 11 05 <unknown>
4c4c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4c50: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be45c>
4c54: 00 00 00 00 udf #0
0000000000004c58 _lj_BC_TDUP.eh:
4c58: 44 00 00 00 udf #68
4c5c: 04 00 00 00 udf #4
4c60: f8 ff ff ff <unknown>
4c64: 54 00 00 00 udf #84
4c68: 00 0e d0 01 <unknown>
4c6c: 9e 01 9d 02 <unknown>
4c70: 93 03 94 04 <unknown>
4c74: 95 05 96 06 <unknown>
4c78: 97 07 98 08 <unknown>
4c7c: 99 09 9a 0a and w25, w12, w26, asr #2
4c80: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4c84: 05 48 0d 05 <unknown>
4c88: 49 0e 05 4a eor w9, w18, w5, lsl #3
4c8c: 0f 05 4b 10 adr x15, #614560
4c90: 05 4c 11 05 <unknown>
4c94: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4c98: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be4a4>
4c9c: 00 00 00 00 udf #0
0000000000004ca0 _lj_BC_GGET.eh:
4ca0: 44 00 00 00 udf #68
4ca4: 04 00 00 00 udf #4
4ca8: f8 ff ff ff <unknown>
4cac: 18 00 00 00 udf #24
4cb0: 00 0e d0 01 <unknown>
4cb4: 9e 01 9d 02 <unknown>
4cb8: 93 03 94 04 <unknown>
4cbc: 95 05 96 06 <unknown>
4cc0: 97 07 98 08 <unknown>
4cc4: 99 09 9a 0a and w25, w12, w26, asr #2
4cc8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4ccc: 05 48 0d 05 <unknown>
4cd0: 49 0e 05 4a eor w9, w18, w5, lsl #3
4cd4: 0f 05 4b 10 adr x15, #614560
4cd8: 05 4c 11 05 <unknown>
4cdc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4ce0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be4ec>
4ce4: 00 00 00 00 udf #0
0000000000004ce8 _lj_BC_GSET.eh:
4ce8: 44 00 00 00 udf #68
4cec: 04 00 00 00 udf #4
4cf0: f8 ff ff ff <unknown>
4cf4: 18 00 00 00 udf #24
4cf8: 00 0e d0 01 <unknown>
4cfc: 9e 01 9d 02 <unknown>
4d00: 93 03 94 04 <unknown>
4d04: 95 05 96 06 <unknown>
4d08: 97 07 98 08 <unknown>
4d0c: 99 09 9a 0a and w25, w12, w26, asr #2
4d10: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4d14: 05 48 0d 05 <unknown>
4d18: 49 0e 05 4a eor w9, w18, w5, lsl #3
4d1c: 0f 05 4b 10 adr x15, #614560
4d20: 05 4c 11 05 <unknown>
4d24: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4d28: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be534>
4d2c: 00 00 00 00 udf #0
0000000000004d30 _lj_BC_TGETV.eh:
4d30: 44 00 00 00 udf #68
4d34: 04 00 00 00 udf #4
4d38: f8 ff ff ff <unknown>
4d3c: 8c 00 00 00 udf #140
4d40: 00 0e d0 01 <unknown>
4d44: 9e 01 9d 02 <unknown>
4d48: 93 03 94 04 <unknown>
4d4c: 95 05 96 06 <unknown>
4d50: 97 07 98 08 <unknown>
4d54: 99 09 9a 0a and w25, w12, w26, asr #2
4d58: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4d5c: 05 48 0d 05 <unknown>
4d60: 49 0e 05 4a eor w9, w18, w5, lsl #3
4d64: 0f 05 4b 10 adr x15, #614560
4d68: 05 4c 11 05 <unknown>
4d6c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4d70: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be57c>
4d74: 00 00 00 00 udf #0
0000000000004d78 _lj_BC_TGETS.eh:
4d78: 44 00 00 00 udf #68
4d7c: 04 00 00 00 udf #4
4d80: f8 ff ff ff <unknown>
4d84: 94 00 00 00 udf #148
4d88: 00 0e d0 01 <unknown>
4d8c: 9e 01 9d 02 <unknown>
4d90: 93 03 94 04 <unknown>
4d94: 95 05 96 06 <unknown>
4d98: 97 07 98 08 <unknown>
4d9c: 99 09 9a 0a and w25, w12, w26, asr #2
4da0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4da4: 05 48 0d 05 <unknown>
4da8: 49 0e 05 4a eor w9, w18, w5, lsl #3
4dac: 0f 05 4b 10 adr x15, #614560
4db0: 05 4c 11 05 <unknown>
4db4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4db8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be5c4>
4dbc: 00 00 00 00 udf #0
0000000000004dc0 _lj_BC_TGETB.eh:
4dc0: 44 00 00 00 udf #68
4dc4: 04 00 00 00 udf #4
4dc8: f8 ff ff ff <unknown>
4dcc: 6c 00 00 00 udf #108
4dd0: 00 0e d0 01 <unknown>
4dd4: 9e 01 9d 02 <unknown>
4dd8: 93 03 94 04 <unknown>
4ddc: 95 05 96 06 <unknown>
4de0: 97 07 98 08 <unknown>
4de4: 99 09 9a 0a and w25, w12, w26, asr #2
4de8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4dec: 05 48 0d 05 <unknown>
4df0: 49 0e 05 4a eor w9, w18, w5, lsl #3
4df4: 0f 05 4b 10 adr x15, #614560
4df8: 05 4c 11 05 <unknown>
4dfc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4e00: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be60c>
4e04: 00 00 00 00 udf #0
0000000000004e08 _lj_BC_TGETR.eh:
4e08: 44 00 00 00 udf #68
4e0c: 04 00 00 00 udf #4
4e10: f8 ff ff ff <unknown>
4e14: 48 00 00 00 udf #72
4e18: 00 0e d0 01 <unknown>
4e1c: 9e 01 9d 02 <unknown>
4e20: 93 03 94 04 <unknown>
4e24: 95 05 96 06 <unknown>
4e28: 97 07 98 08 <unknown>
4e2c: 99 09 9a 0a and w25, w12, w26, asr #2
4e30: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4e34: 05 48 0d 05 <unknown>
4e38: 49 0e 05 4a eor w9, w18, w5, lsl #3
4e3c: 0f 05 4b 10 adr x15, #614560
4e40: 05 4c 11 05 <unknown>
4e44: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4e48: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be654>
4e4c: 00 00 00 00 udf #0
0000000000004e50 _lj_BC_TSETV.eh:
4e50: 44 00 00 00 udf #68
4e54: 04 00 00 00 udf #4
4e58: f8 ff ff ff <unknown>
4e5c: b0 00 00 00 udf #176
4e60: 00 0e d0 01 <unknown>
4e64: 9e 01 9d 02 <unknown>
4e68: 93 03 94 04 <unknown>
4e6c: 95 05 96 06 <unknown>
4e70: 97 07 98 08 <unknown>
4e74: 99 09 9a 0a and w25, w12, w26, asr #2
4e78: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4e7c: 05 48 0d 05 <unknown>
4e80: 49 0e 05 4a eor w9, w18, w5, lsl #3
4e84: 0f 05 4b 10 adr x15, #614560
4e88: 05 4c 11 05 <unknown>
4e8c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4e90: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be69c>
4e94: 00 00 00 00 udf #0
0000000000004e98 _lj_BC_TSETS.eh:
4e98: 44 00 00 00 udf #68
4e9c: 04 00 00 00 udf #4
4ea0: f8 ff ff ff <unknown>
4ea4: fc 00 00 00 udf #252
4ea8: 00 0e d0 01 <unknown>
4eac: 9e 01 9d 02 <unknown>
4eb0: 93 03 94 04 <unknown>
4eb4: 95 05 96 06 <unknown>
4eb8: 97 07 98 08 <unknown>
4ebc: 99 09 9a 0a and w25, w12, w26, asr #2
4ec0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4ec4: 05 48 0d 05 <unknown>
4ec8: 49 0e 05 4a eor w9, w18, w5, lsl #3
4ecc: 0f 05 4b 10 adr x15, #614560
4ed0: 05 4c 11 05 <unknown>
4ed4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4ed8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be6e4>
4edc: 00 00 00 00 udf #0
0000000000004ee0 _lj_BC_TSETB.eh:
4ee0: 44 00 00 00 udf #68
4ee4: 04 00 00 00 udf #4
4ee8: f8 ff ff ff <unknown>
4eec: 90 00 00 00 udf #144
4ef0: 00 0e d0 01 <unknown>
4ef4: 9e 01 9d 02 <unknown>
4ef8: 93 03 94 04 <unknown>
4efc: 95 05 96 06 <unknown>
4f00: 97 07 98 08 <unknown>
4f04: 99 09 9a 0a and w25, w12, w26, asr #2
4f08: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4f0c: 05 48 0d 05 <unknown>
4f10: 49 0e 05 4a eor w9, w18, w5, lsl #3
4f14: 0f 05 4b 10 adr x15, #614560
4f18: 05 4c 11 05 <unknown>
4f1c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4f20: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be72c>
4f24: 00 00 00 00 udf #0
0000000000004f28 _lj_BC_TSETM.eh:
4f28: 44 00 00 00 udf #68
4f2c: 04 00 00 00 udf #4
4f30: f8 ff ff ff <unknown>
4f34: 94 00 00 00 udf #148
4f38: 00 0e d0 01 <unknown>
4f3c: 9e 01 9d 02 <unknown>
4f40: 93 03 94 04 <unknown>
4f44: 95 05 96 06 <unknown>
4f48: 97 07 98 08 <unknown>
4f4c: 99 09 9a 0a and w25, w12, w26, asr #2
4f50: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4f54: 05 48 0d 05 <unknown>
4f58: 49 0e 05 4a eor w9, w18, w5, lsl #3
4f5c: 0f 05 4b 10 adr x15, #614560
4f60: 05 4c 11 05 <unknown>
4f64: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4f68: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be774>
4f6c: 00 00 00 00 udf #0
0000000000004f70 _lj_BC_TSETR.eh:
4f70: 44 00 00 00 udf #68
4f74: 04 00 00 00 udf #4
4f78: f8 ff ff ff <unknown>
4f7c: 68 00 00 00 udf #104
4f80: 00 0e d0 01 <unknown>
4f84: 9e 01 9d 02 <unknown>
4f88: 93 03 94 04 <unknown>
4f8c: 95 05 96 06 <unknown>
4f90: 97 07 98 08 <unknown>
4f94: 99 09 9a 0a and w25, w12, w26, asr #2
4f98: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4f9c: 05 48 0d 05 <unknown>
4fa0: 49 0e 05 4a eor w9, w18, w5, lsl #3
4fa4: 0f 05 4b 10 adr x15, #614560
4fa8: 05 4c 11 05 <unknown>
4fac: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4fb0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be7bc>
4fb4: 00 00 00 00 udf #0
0000000000004fb8 _lj_BC_CALLM.eh:
4fb8: 44 00 00 00 udf #68
4fbc: 04 00 00 00 udf #4
4fc0: f8 ff ff ff <unknown>
4fc4: 10 00 00 00 udf #16
4fc8: 00 0e d0 01 <unknown>
4fcc: 9e 01 9d 02 <unknown>
4fd0: 93 03 94 04 <unknown>
4fd4: 95 05 96 06 <unknown>
4fd8: 97 07 98 08 <unknown>
4fdc: 99 09 9a 0a and w25, w12, w26, asr #2
4fe0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
4fe4: 05 48 0d 05 <unknown>
4fe8: 49 0e 05 4a eor w9, w18, w5, lsl #3
4fec: 0f 05 4b 10 adr x15, #614560
4ff0: 05 4c 11 05 <unknown>
4ff4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
4ff8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be804>
4ffc: 00 00 00 00 udf #0
0000000000005000 _lj_BC_CALL.eh:
5000: 44 00 00 00 udf #68
5004: 04 00 00 00 udf #4
5008: f8 ff ff ff <unknown>
500c: 48 00 00 00 udf #72
5010: 00 0e d0 01 <unknown>
5014: 9e 01 9d 02 <unknown>
5018: 93 03 94 04 <unknown>
501c: 95 05 96 06 <unknown>
5020: 97 07 98 08 <unknown>
5024: 99 09 9a 0a and w25, w12, w26, asr #2
5028: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
502c: 05 48 0d 05 <unknown>
5030: 49 0e 05 4a eor w9, w18, w5, lsl #3
5034: 0f 05 4b 10 adr x15, #614560
5038: 05 4c 11 05 <unknown>
503c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5040: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be84c>
5044: 00 00 00 00 udf #0
0000000000005048 _lj_BC_CALLMT.eh:
5048: 44 00 00 00 udf #68
504c: 04 00 00 00 udf #4
5050: f8 ff ff ff <unknown>
5054: 0c 00 00 00 udf #12
5058: 00 0e d0 01 <unknown>
505c: 9e 01 9d 02 <unknown>
5060: 93 03 94 04 <unknown>
5064: 95 05 96 06 <unknown>
5068: 97 07 98 08 <unknown>
506c: 99 09 9a 0a and w25, w12, w26, asr #2
5070: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5074: 05 48 0d 05 <unknown>
5078: 49 0e 05 4a eor w9, w18, w5, lsl #3
507c: 0f 05 4b 10 adr x15, #614560
5080: 05 4c 11 05 <unknown>
5084: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5088: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be894>
508c: 00 00 00 00 udf #0
0000000000005090 _lj_BC_CALLT.eh:
5090: 44 00 00 00 udf #68
5094: 04 00 00 00 udf #4
5098: f8 ff ff ff <unknown>
509c: bc 00 00 00 udf #188
50a0: 00 0e d0 01 <unknown>
50a4: 9e 01 9d 02 <unknown>
50a8: 93 03 94 04 <unknown>
50ac: 95 05 96 06 <unknown>
50b0: 97 07 98 08 <unknown>
50b4: 99 09 9a 0a and w25, w12, w26, asr #2
50b8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
50bc: 05 48 0d 05 <unknown>
50c0: 49 0e 05 4a eor w9, w18, w5, lsl #3
50c4: 0f 05 4b 10 adr x15, #614560
50c8: 05 4c 11 05 <unknown>
50cc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
50d0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be8dc>
50d4: 00 00 00 00 udf #0
00000000000050d8 _lj_BC_ITERC.eh:
50d8: 44 00 00 00 udf #68
50dc: 04 00 00 00 udf #4
50e0: f8 ff ff ff <unknown>
50e4: 50 00 00 00 udf #80
50e8: 00 0e d0 01 <unknown>
50ec: 9e 01 9d 02 <unknown>
50f0: 93 03 94 04 <unknown>
50f4: 95 05 96 06 <unknown>
50f8: 97 07 98 08 <unknown>
50fc: 99 09 9a 0a and w25, w12, w26, asr #2
5100: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5104: 05 48 0d 05 <unknown>
5108: 49 0e 05 4a eor w9, w18, w5, lsl #3
510c: 0f 05 4b 10 adr x15, #614560
5110: 05 4c 11 05 <unknown>
5114: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5118: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be924>
511c: 00 00 00 00 udf #0
0000000000005120 _lj_BC_ITERN.eh:
5120: 44 00 00 00 udf #68
5124: 04 00 00 00 udf #4
5128: f8 ff ff ff <unknown>
512c: a4 00 00 00 udf #164
5130: 00 0e d0 01 <unknown>
5134: 9e 01 9d 02 <unknown>
5138: 93 03 94 04 <unknown>
513c: 95 05 96 06 <unknown>
5140: 97 07 98 08 <unknown>
5144: 99 09 9a 0a and w25, w12, w26, asr #2
5148: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
514c: 05 48 0d 05 <unknown>
5150: 49 0e 05 4a eor w9, w18, w5, lsl #3
5154: 0f 05 4b 10 adr x15, #614560
5158: 05 4c 11 05 <unknown>
515c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5160: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be96c>
5164: 00 00 00 00 udf #0
0000000000005168 _lj_BC_VARG.eh:
5168: 44 00 00 00 udf #68
516c: 04 00 00 00 udf #4
5170: f8 ff ff ff <unknown>
5174: bc 00 00 00 udf #188
5178: 00 0e d0 01 <unknown>
517c: 9e 01 9d 02 <unknown>
5180: 93 03 94 04 <unknown>
5184: 95 05 96 06 <unknown>
5188: 97 07 98 08 <unknown>
518c: 99 09 9a 0a and w25, w12, w26, asr #2
5190: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5194: 05 48 0d 05 <unknown>
5198: 49 0e 05 4a eor w9, w18, w5, lsl #3
519c: 0f 05 4b 10 adr x15, #614560
51a0: 05 4c 11 05 <unknown>
51a4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
51a8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be9b4>
51ac: 00 00 00 00 udf #0
00000000000051b0 _lj_BC_ISNEXT.eh:
51b0: 44 00 00 00 udf #68
51b4: 04 00 00 00 udf #4
51b8: f8 ff ff ff <unknown>
51bc: 78 00 00 00 udf #120
51c0: 00 0e d0 01 <unknown>
51c4: 9e 01 9d 02 <unknown>
51c8: 93 03 94 04 <unknown>
51cc: 95 05 96 06 <unknown>
51d0: 97 07 98 08 <unknown>
51d4: 99 09 9a 0a and w25, w12, w26, asr #2
51d8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
51dc: 05 48 0d 05 <unknown>
51e0: 49 0e 05 4a eor w9, w18, w5, lsl #3
51e4: 0f 05 4b 10 adr x15, #614560
51e8: 05 4c 11 05 <unknown>
51ec: 4d 12 05 4e tbx.16b v13, { v18 }, v5
51f0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13be9fc>
51f4: 00 00 00 00 udf #0
00000000000051f8 _lj_BC_RETM.eh:
51f8: 44 00 00 00 udf #68
51fc: 04 00 00 00 udf #4
5200: f8 ff ff ff <unknown>
5204: 14 00 00 00 udf #20
5208: 00 0e d0 01 <unknown>
520c: 9e 01 9d 02 <unknown>
5210: 93 03 94 04 <unknown>
5214: 95 05 96 06 <unknown>
5218: 97 07 98 08 <unknown>
521c: 99 09 9a 0a and w25, w12, w26, asr #2
5220: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5224: 05 48 0d 05 <unknown>
5228: 49 0e 05 4a eor w9, w18, w5, lsl #3
522c: 0f 05 4b 10 adr x15, #614560
5230: 05 4c 11 05 <unknown>
5234: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5238: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bea44>
523c: 00 00 00 00 udf #0
0000000000005240 _lj_BC_RET.eh:
5240: 44 00 00 00 udf #68
5244: 04 00 00 00 udf #4
5248: f8 ff ff ff <unknown>
524c: a8 00 00 00 udf #168
5250: 00 0e d0 01 <unknown>
5254: 9e 01 9d 02 <unknown>
5258: 93 03 94 04 <unknown>
525c: 95 05 96 06 <unknown>
5260: 97 07 98 08 <unknown>
5264: 99 09 9a 0a and w25, w12, w26, asr #2
5268: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
526c: 05 48 0d 05 <unknown>
5270: 49 0e 05 4a eor w9, w18, w5, lsl #3
5274: 0f 05 4b 10 adr x15, #614560
5278: 05 4c 11 05 <unknown>
527c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5280: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bea8c>
5284: 00 00 00 00 udf #0
0000000000005288 _lj_BC_RET0.eh:
5288: 44 00 00 00 udf #68
528c: 04 00 00 00 udf #4
5290: f8 ff ff ff <unknown>
5294: 68 00 00 00 udf #104
5298: 00 0e d0 01 <unknown>
529c: 9e 01 9d 02 <unknown>
52a0: 93 03 94 04 <unknown>
52a4: 95 05 96 06 <unknown>
52a8: 97 07 98 08 <unknown>
52ac: 99 09 9a 0a and w25, w12, w26, asr #2
52b0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
52b4: 05 48 0d 05 <unknown>
52b8: 49 0e 05 4a eor w9, w18, w5, lsl #3
52bc: 0f 05 4b 10 adr x15, #614560
52c0: 05 4c 11 05 <unknown>
52c4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
52c8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bead4>
52cc: 00 00 00 00 udf #0
00000000000052d0 _lj_BC_RET1.eh:
52d0: 44 00 00 00 udf #68
52d4: 04 00 00 00 udf #4
52d8: f8 ff ff ff <unknown>
52dc: 70 00 00 00 udf #112
52e0: 00 0e d0 01 <unknown>
52e4: 9e 01 9d 02 <unknown>
52e8: 93 03 94 04 <unknown>
52ec: 95 05 96 06 <unknown>
52f0: 97 07 98 08 <unknown>
52f4: 99 09 9a 0a and w25, w12, w26, asr #2
52f8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
52fc: 05 48 0d 05 <unknown>
5300: 49 0e 05 4a eor w9, w18, w5, lsl #3
5304: 0f 05 4b 10 adr x15, #614560
5308: 05 4c 11 05 <unknown>
530c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5310: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13beb1c>
5314: 00 00 00 00 udf #0
0000000000005318 _lj_BC_FORI.eh:
5318: 44 00 00 00 udf #68
531c: 04 00 00 00 udf #4
5320: f8 ff ff ff <unknown>
5324: 90 00 00 00 udf #144
5328: 00 0e d0 01 <unknown>
532c: 9e 01 9d 02 <unknown>
5330: 93 03 94 04 <unknown>
5334: 95 05 96 06 <unknown>
5338: 97 07 98 08 <unknown>
533c: 99 09 9a 0a and w25, w12, w26, asr #2
5340: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5344: 05 48 0d 05 <unknown>
5348: 49 0e 05 4a eor w9, w18, w5, lsl #3
534c: 0f 05 4b 10 adr x15, #614560
5350: 05 4c 11 05 <unknown>
5354: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5358: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13beb64>
535c: 00 00 00 00 udf #0
0000000000005360 _lj_BC_JFORI.eh:
5360: 44 00 00 00 udf #68
5364: 04 00 00 00 udf #4
5368: f8 ff ff ff <unknown>
536c: 9c 00 00 00 udf #156
5370: 00 0e d0 01 <unknown>
5374: 9e 01 9d 02 <unknown>
5378: 93 03 94 04 <unknown>
537c: 95 05 96 06 <unknown>
5380: 97 07 98 08 <unknown>
5384: 99 09 9a 0a and w25, w12, w26, asr #2
5388: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
538c: 05 48 0d 05 <unknown>
5390: 49 0e 05 4a eor w9, w18, w5, lsl #3
5394: 0f 05 4b 10 adr x15, #614560
5398: 05 4c 11 05 <unknown>
539c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
53a0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bebac>
53a4: 00 00 00 00 udf #0
00000000000053a8 _lj_BC_FORL.eh:
53a8: 44 00 00 00 udf #68
53ac: 04 00 00 00 udf #4
53b0: f8 ff ff ff <unknown>
53b4: 1c 00 00 00 udf #28
53b8: 00 0e d0 01 <unknown>
53bc: 9e 01 9d 02 <unknown>
53c0: 93 03 94 04 <unknown>
53c4: 95 05 96 06 <unknown>
53c8: 97 07 98 08 <unknown>
53cc: 99 09 9a 0a and w25, w12, w26, asr #2
53d0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
53d4: 05 48 0d 05 <unknown>
53d8: 49 0e 05 4a eor w9, w18, w5, lsl #3
53dc: 0f 05 4b 10 adr x15, #614560
53e0: 05 4c 11 05 <unknown>
53e4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
53e8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bebf4>
53ec: 00 00 00 00 udf #0
00000000000053f0 _lj_BC_IFORL.eh:
53f0: 44 00 00 00 udf #68
53f4: 04 00 00 00 udf #4
53f8: f8 ff ff ff <unknown>
53fc: 8c 00 00 00 udf #140
5400: 00 0e d0 01 <unknown>
5404: 9e 01 9d 02 <unknown>
5408: 93 03 94 04 <unknown>
540c: 95 05 96 06 <unknown>
5410: 97 07 98 08 <unknown>
5414: 99 09 9a 0a and w25, w12, w26, asr #2
5418: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
541c: 05 48 0d 05 <unknown>
5420: 49 0e 05 4a eor w9, w18, w5, lsl #3
5424: 0f 05 4b 10 adr x15, #614560
5428: 05 4c 11 05 <unknown>
542c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5430: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bec3c>
5434: 00 00 00 00 udf #0
0000000000005438 _lj_BC_JFORL.eh:
5438: 44 00 00 00 udf #68
543c: 04 00 00 00 udf #4
5440: f8 ff ff ff <unknown>
5444: 84 00 00 00 udf #132
5448: 00 0e d0 01 <unknown>
544c: 9e 01 9d 02 <unknown>
5450: 93 03 94 04 <unknown>
5454: 95 05 96 06 <unknown>
5458: 97 07 98 08 <unknown>
545c: 99 09 9a 0a and w25, w12, w26, asr #2
5460: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5464: 05 48 0d 05 <unknown>
5468: 49 0e 05 4a eor w9, w18, w5, lsl #3
546c: 0f 05 4b 10 adr x15, #614560
5470: 05 4c 11 05 <unknown>
5474: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5478: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bec84>
547c: 00 00 00 00 udf #0
0000000000005480 _lj_BC_ITERL.eh:
5480: 44 00 00 00 udf #68
5484: 04 00 00 00 udf #4
5488: f8 ff ff ff <unknown>
548c: 1c 00 00 00 udf #28
5490: 00 0e d0 01 <unknown>
5494: 9e 01 9d 02 <unknown>
5498: 93 03 94 04 <unknown>
549c: 95 05 96 06 <unknown>
54a0: 97 07 98 08 <unknown>
54a4: 99 09 9a 0a and w25, w12, w26, asr #2
54a8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
54ac: 05 48 0d 05 <unknown>
54b0: 49 0e 05 4a eor w9, w18, w5, lsl #3
54b4: 0f 05 4b 10 adr x15, #614560
54b8: 05 4c 11 05 <unknown>
54bc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
54c0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13beccc>
54c4: 00 00 00 00 udf #0
00000000000054c8 _lj_BC_IITERL.eh:
54c8: 44 00 00 00 udf #68
54cc: 04 00 00 00 udf #4
54d0: f8 ff ff ff <unknown>
54d4: 34 00 00 00 udf #52
54d8: 00 0e d0 01 <unknown>
54dc: 9e 01 9d 02 <unknown>
54e0: 93 03 94 04 <unknown>
54e4: 95 05 96 06 <unknown>
54e8: 97 07 98 08 <unknown>
54ec: 99 09 9a 0a and w25, w12, w26, asr #2
54f0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
54f4: 05 48 0d 05 <unknown>
54f8: 49 0e 05 4a eor w9, w18, w5, lsl #3
54fc: 0f 05 4b 10 adr x15, #614560
5500: 05 4c 11 05 <unknown>
5504: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5508: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bed14>
550c: 00 00 00 00 udf #0
0000000000005510 _lj_BC_JITERL.eh:
5510: 44 00 00 00 udf #68
5514: 04 00 00 00 udf #4
5518: f8 ff ff ff <unknown>
551c: 30 00 00 00 udf #48
5520: 00 0e d0 01 <unknown>
5524: 9e 01 9d 02 <unknown>
5528: 93 03 94 04 <unknown>
552c: 95 05 96 06 <unknown>
5530: 97 07 98 08 <unknown>
5534: 99 09 9a 0a and w25, w12, w26, asr #2
5538: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
553c: 05 48 0d 05 <unknown>
5540: 49 0e 05 4a eor w9, w18, w5, lsl #3
5544: 0f 05 4b 10 adr x15, #614560
5548: 05 4c 11 05 <unknown>
554c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5550: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bed5c>
5554: 00 00 00 00 udf #0
0000000000005558 _lj_BC_LOOP.eh:
5558: 44 00 00 00 udf #68
555c: 04 00 00 00 udf #4
5560: f8 ff ff ff <unknown>
5564: 1c 00 00 00 udf #28
5568: 00 0e d0 01 <unknown>
556c: 9e 01 9d 02 <unknown>
5570: 93 03 94 04 <unknown>
5574: 95 05 96 06 <unknown>
5578: 97 07 98 08 <unknown>
557c: 99 09 9a 0a and w25, w12, w26, asr #2
5580: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5584: 05 48 0d 05 <unknown>
5588: 49 0e 05 4a eor w9, w18, w5, lsl #3
558c: 0f 05 4b 10 adr x15, #614560
5590: 05 4c 11 05 <unknown>
5594: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5598: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13beda4>
559c: 00 00 00 00 udf #0
00000000000055a0 _lj_BC_ILOOP.eh:
55a0: 44 00 00 00 udf #68
55a4: 04 00 00 00 udf #4
55a8: f8 ff ff ff <unknown>
55ac: 18 00 00 00 udf #24
55b0: 00 0e d0 01 <unknown>
55b4: 9e 01 9d 02 <unknown>
55b8: 93 03 94 04 <unknown>
55bc: 95 05 96 06 <unknown>
55c0: 97 07 98 08 <unknown>
55c4: 99 09 9a 0a and w25, w12, w26, asr #2
55c8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
55cc: 05 48 0d 05 <unknown>
55d0: 49 0e 05 4a eor w9, w18, w5, lsl #3
55d4: 0f 05 4b 10 adr x15, #614560
55d8: 05 4c 11 05 <unknown>
55dc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
55e0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bedec>
55e4: 00 00 00 00 udf #0
00000000000055e8 _lj_BC_JLOOP.eh:
55e8: 44 00 00 00 udf #68
55ec: 04 00 00 00 udf #4
55f0: f8 ff ff ff <unknown>
55f4: 24 00 00 00 udf #36
55f8: 00 0e d0 01 <unknown>
55fc: 9e 01 9d 02 <unknown>
5600: 93 03 94 04 <unknown>
5604: 95 05 96 06 <unknown>
5608: 97 07 98 08 <unknown>
560c: 99 09 9a 0a and w25, w12, w26, asr #2
5610: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5614: 05 48 0d 05 <unknown>
5618: 49 0e 05 4a eor w9, w18, w5, lsl #3
561c: 0f 05 4b 10 adr x15, #614560
5620: 05 4c 11 05 <unknown>
5624: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5628: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bee34>
562c: 00 00 00 00 udf #0
0000000000005630 _lj_BC_JMP.eh:
5630: 44 00 00 00 udf #68
5634: 04 00 00 00 udf #4
5638: f8 ff ff ff <unknown>
563c: 20 00 00 00 udf #32
5640: 00 0e d0 01 <unknown>
5644: 9e 01 9d 02 <unknown>
5648: 93 03 94 04 <unknown>
564c: 95 05 96 06 <unknown>
5650: 97 07 98 08 <unknown>
5654: 99 09 9a 0a and w25, w12, w26, asr #2
5658: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
565c: 05 48 0d 05 <unknown>
5660: 49 0e 05 4a eor w9, w18, w5, lsl #3
5664: 0f 05 4b 10 adr x15, #614560
5668: 05 4c 11 05 <unknown>
566c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5670: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bee7c>
5674: 00 00 00 00 udf #0
0000000000005678 _lj_BC_FUNCF.eh:
5678: 44 00 00 00 udf #68
567c: 04 00 00 00 udf #4
5680: f8 ff ff ff <unknown>
5684: 1c 00 00 00 udf #28
5688: 00 0e d0 01 <unknown>
568c: 9e 01 9d 02 <unknown>
5690: 93 03 94 04 <unknown>
5694: 95 05 96 06 <unknown>
5698: 97 07 98 08 <unknown>
569c: 99 09 9a 0a and w25, w12, w26, asr #2
56a0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
56a4: 05 48 0d 05 <unknown>
56a8: 49 0e 05 4a eor w9, w18, w5, lsl #3
56ac: 0f 05 4b 10 adr x15, #614560
56b0: 05 4c 11 05 <unknown>
56b4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
56b8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13beec4>
56bc: 00 00 00 00 udf #0
00000000000056c0 _lj_BC_IFUNCF.eh:
56c0: 44 00 00 00 udf #68
56c4: 04 00 00 00 udf #4
56c8: f8 ff ff ff <unknown>
56cc: 40 00 00 00 udf #64
56d0: 00 0e d0 01 <unknown>
56d4: 9e 01 9d 02 <unknown>
56d8: 93 03 94 04 <unknown>
56dc: 95 05 96 06 <unknown>
56e0: 97 07 98 08 <unknown>
56e4: 99 09 9a 0a and w25, w12, w26, asr #2
56e8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
56ec: 05 48 0d 05 <unknown>
56f0: 49 0e 05 4a eor w9, w18, w5, lsl #3
56f4: 0f 05 4b 10 adr x15, #614560
56f8: 05 4c 11 05 <unknown>
56fc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5700: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bef0c>
5704: 00 00 00 00 udf #0
0000000000005708 _lj_BC_JFUNCF.eh:
5708: 44 00 00 00 udf #68
570c: 04 00 00 00 udf #4
5710: f8 ff ff ff <unknown>
5714: 30 00 00 00 udf #48
5718: 00 0e d0 01 <unknown>
571c: 9e 01 9d 02 <unknown>
5720: 93 03 94 04 <unknown>
5724: 95 05 96 06 <unknown>
5728: 97 07 98 08 <unknown>
572c: 99 09 9a 0a and w25, w12, w26, asr #2
5730: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5734: 05 48 0d 05 <unknown>
5738: 49 0e 05 4a eor w9, w18, w5, lsl #3
573c: 0f 05 4b 10 adr x15, #614560
5740: 05 4c 11 05 <unknown>
5744: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5748: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bef54>
574c: 00 00 00 00 udf #0
0000000000005750 _lj_BC_IFUNCV.eh:
5750: 44 00 00 00 udf #68
5754: 04 00 00 00 udf #4
5758: f8 ff ff ff <unknown>
575c: 84 00 00 00 udf #132
5760: 00 0e d0 01 <unknown>
5764: 9e 01 9d 02 <unknown>
5768: 93 03 94 04 <unknown>
576c: 95 05 96 06 <unknown>
5770: 97 07 98 08 <unknown>
5774: 99 09 9a 0a and w25, w12, w26, asr #2
5778: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
577c: 05 48 0d 05 <unknown>
5780: 49 0e 05 4a eor w9, w18, w5, lsl #3
5784: 0f 05 4b 10 adr x15, #614560
5788: 05 4c 11 05 <unknown>
578c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5790: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bef9c>
5794: 00 00 00 00 udf #0
0000000000005798 _lj_BC_JFUNCV.eh:
5798: 44 00 00 00 udf #68
579c: 04 00 00 00 udf #4
57a0: f8 ff ff ff <unknown>
57a4: 04 00 00 00 udf #4
57a8: 00 0e d0 01 <unknown>
57ac: 9e 01 9d 02 <unknown>
57b0: 93 03 94 04 <unknown>
57b4: 95 05 96 06 <unknown>
57b8: 97 07 98 08 <unknown>
57bc: 99 09 9a 0a and w25, w12, w26, asr #2
57c0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
57c4: 05 48 0d 05 <unknown>
57c8: 49 0e 05 4a eor w9, w18, w5, lsl #3
57cc: 0f 05 4b 10 adr x15, #614560
57d0: 05 4c 11 05 <unknown>
57d4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
57d8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13befe4>
57dc: 00 00 00 00 udf #0
00000000000057e0 _lj_BC_FUNCC.eh:
57e0: 44 00 00 00 udf #68
57e4: 04 00 00 00 udf #4
57e8: f8 ff ff ff <unknown>
57ec: 48 00 00 00 udf #72
57f0: 00 0e d0 01 <unknown>
57f4: 9e 01 9d 02 <unknown>
57f8: 93 03 94 04 <unknown>
57fc: 95 05 96 06 <unknown>
5800: 97 07 98 08 <unknown>
5804: 99 09 9a 0a and w25, w12, w26, asr #2
5808: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
580c: 05 48 0d 05 <unknown>
5810: 49 0e 05 4a eor w9, w18, w5, lsl #3
5814: 0f 05 4b 10 adr x15, #614560
5818: 05 4c 11 05 <unknown>
581c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5820: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf02c>
5824: 00 00 00 00 udf #0
0000000000005828 _lj_BC_FUNCCW.eh:
5828: 44 00 00 00 udf #68
582c: 04 00 00 00 udf #4
5830: f8 ff ff ff <unknown>
5834: 4c 00 00 00 udf #76
5838: 00 0e d0 01 <unknown>
583c: 9e 01 9d 02 <unknown>
5840: 93 03 94 04 <unknown>
5844: 95 05 96 06 <unknown>
5848: 97 07 98 08 <unknown>
584c: 99 09 9a 0a and w25, w12, w26, asr #2
5850: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5854: 05 48 0d 05 <unknown>
5858: 49 0e 05 4a eor w9, w18, w5, lsl #3
585c: 0f 05 4b 10 adr x15, #614560
5860: 05 4c 11 05 <unknown>
5864: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5868: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf074>
586c: 00 00 00 00 udf #0
0000000000005870 _lj_vm_returnp.eh:
5870: 44 00 00 00 udf #68
5874: 04 00 00 00 udf #4
5878: f8 ff ff ff <unknown>
587c: 14 00 00 00 udf #20
5880: 00 0e d0 01 <unknown>
5884: 9e 01 9d 02 <unknown>
5888: 93 03 94 04 <unknown>
588c: 95 05 96 06 <unknown>
5890: 97 07 98 08 <unknown>
5894: 99 09 9a 0a and w25, w12, w26, asr #2
5898: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
589c: 05 48 0d 05 <unknown>
58a0: 49 0e 05 4a eor w9, w18, w5, lsl #3
58a4: 0f 05 4b 10 adr x15, #614560
58a8: 05 4c 11 05 <unknown>
58ac: 4d 12 05 4e tbx.16b v13, { v18 }, v5
58b0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf0bc>
58b4: 00 00 00 00 udf #0
00000000000058b8 _lj_vm_returnc.eh:
58b8: 44 00 00 00 udf #68
58bc: 04 00 00 00 udf #4
58c0: f8 ff ff ff <unknown>
58c4: 18 00 00 00 udf #24
58c8: 00 0e d0 01 <unknown>
58cc: 9e 01 9d 02 <unknown>
58d0: 93 03 94 04 <unknown>
58d4: 95 05 96 06 <unknown>
58d8: 97 07 98 08 <unknown>
58dc: 99 09 9a 0a and w25, w12, w26, asr #2
58e0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
58e4: 05 48 0d 05 <unknown>
58e8: 49 0e 05 4a eor w9, w18, w5, lsl #3
58ec: 0f 05 4b 10 adr x15, #614560
58f0: 05 4c 11 05 <unknown>
58f4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
58f8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf104>
58fc: 00 00 00 00 udf #0
0000000000005900 _lj_vm_return.eh:
5900: 44 00 00 00 udf #68
5904: 04 00 00 00 udf #4
5908: f8 ff ff ff <unknown>
590c: 48 00 00 00 udf #72
5910: 00 0e d0 01 <unknown>
5914: 9e 01 9d 02 <unknown>
5918: 93 03 94 04 <unknown>
591c: 95 05 96 06 <unknown>
5920: 97 07 98 08 <unknown>
5924: 99 09 9a 0a and w25, w12, w26, asr #2
5928: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
592c: 05 48 0d 05 <unknown>
5930: 49 0e 05 4a eor w9, w18, w5, lsl #3
5934: 0f 05 4b 10 adr x15, #614560
5938: 05 4c 11 05 <unknown>
593c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5940: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf14c>
5944: 00 00 00 00 udf #0
0000000000005948 _lj_vm_leave_cp.eh:
5948: 44 00 00 00 udf #68
594c: 04 00 00 00 udf #4
5950: f8 ff ff ff <unknown>
5954: 0c 00 00 00 udf #12
5958: 00 0e d0 01 <unknown>
595c: 9e 01 9d 02 <unknown>
5960: 93 03 94 04 <unknown>
5964: 95 05 96 06 <unknown>
5968: 97 07 98 08 <unknown>
596c: 99 09 9a 0a and w25, w12, w26, asr #2
5970: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5974: 05 48 0d 05 <unknown>
5978: 49 0e 05 4a eor w9, w18, w5, lsl #3
597c: 0f 05 4b 10 adr x15, #614560
5980: 05 4c 11 05 <unknown>
5984: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5988: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf194>
598c: 00 00 00 00 udf #0
0000000000005990 _lj_vm_leave_unw.eh:
5990: 44 00 00 00 udf #68
5994: 04 00 00 00 udf #4
5998: f8 ff ff ff <unknown>
599c: 74 00 00 00 udf #116
59a0: 00 0e d0 01 <unknown>
59a4: 9e 01 9d 02 <unknown>
59a8: 93 03 94 04 <unknown>
59ac: 95 05 96 06 <unknown>
59b0: 97 07 98 08 <unknown>
59b4: 99 09 9a 0a and w25, w12, w26, asr #2
59b8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
59bc: 05 48 0d 05 <unknown>
59c0: 49 0e 05 4a eor w9, w18, w5, lsl #3
59c4: 0f 05 4b 10 adr x15, #614560
59c8: 05 4c 11 05 <unknown>
59cc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
59d0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf1dc>
59d4: 00 00 00 00 udf #0
00000000000059d8 _lj_vm_unwind_c.eh:
59d8: 44 00 00 00 udf #68
59dc: 04 00 00 00 udf #4
59e0: f8 ff ff ff <unknown>
59e4: 08 00 00 00 udf #8
59e8: 00 0e d0 01 <unknown>
59ec: 9e 01 9d 02 <unknown>
59f0: 93 03 94 04 <unknown>
59f4: 95 05 96 06 <unknown>
59f8: 97 07 98 08 <unknown>
59fc: 99 09 9a 0a and w25, w12, w26, asr #2
5a00: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5a04: 05 48 0d 05 <unknown>
5a08: 49 0e 05 4a eor w9, w18, w5, lsl #3
5a0c: 0f 05 4b 10 adr x15, #614560
5a10: 05 4c 11 05 <unknown>
5a14: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5a18: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf224>
5a1c: 00 00 00 00 udf #0
0000000000005a20 _lj_vm_unwind_c_eh.eh:
5a20: 44 00 00 00 udf #68
5a24: 04 00 00 00 udf #4
5a28: f8 ff ff ff <unknown>
5a2c: 14 00 00 00 udf #20
5a30: 00 0e d0 01 <unknown>
5a34: 9e 01 9d 02 <unknown>
5a38: 93 03 94 04 <unknown>
5a3c: 95 05 96 06 <unknown>
5a40: 97 07 98 08 <unknown>
5a44: 99 09 9a 0a and w25, w12, w26, asr #2
5a48: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5a4c: 05 48 0d 05 <unknown>
5a50: 49 0e 05 4a eor w9, w18, w5, lsl #3
5a54: 0f 05 4b 10 adr x15, #614560
5a58: 05 4c 11 05 <unknown>
5a5c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5a60: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf26c>
5a64: 00 00 00 00 udf #0
0000000000005a68 _lj_vm_unwind_ff.eh:
5a68: 44 00 00 00 udf #68
5a6c: 04 00 00 00 udf #4
5a70: f8 ff ff ff <unknown>
5a74: 04 00 00 00 udf #4
5a78: 00 0e d0 01 <unknown>
5a7c: 9e 01 9d 02 <unknown>
5a80: 93 03 94 04 <unknown>
5a84: 95 05 96 06 <unknown>
5a88: 97 07 98 08 <unknown>
5a8c: 99 09 9a 0a and w25, w12, w26, asr #2
5a90: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5a94: 05 48 0d 05 <unknown>
5a98: 49 0e 05 4a eor w9, w18, w5, lsl #3
5a9c: 0f 05 4b 10 adr x15, #614560
5aa0: 05 4c 11 05 <unknown>
5aa4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5aa8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf2b4>
5aac: 00 00 00 00 udf #0
0000000000005ab0 _lj_vm_unwind_ff_eh.eh:
5ab0: 44 00 00 00 udf #68
5ab4: 04 00 00 00 udf #4
5ab8: f8 ff ff ff <unknown>
5abc: 34 00 00 00 udf #52
5ac0: 00 0e d0 01 <unknown>
5ac4: 9e 01 9d 02 <unknown>
5ac8: 93 03 94 04 <unknown>
5acc: 95 05 96 06 <unknown>
5ad0: 97 07 98 08 <unknown>
5ad4: 99 09 9a 0a and w25, w12, w26, asr #2
5ad8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5adc: 05 48 0d 05 <unknown>
5ae0: 49 0e 05 4a eor w9, w18, w5, lsl #3
5ae4: 0f 05 4b 10 adr x15, #614560
5ae8: 05 4c 11 05 <unknown>
5aec: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5af0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf2fc>
5af4: 00 00 00 00 udf #0
0000000000005af8 _lj_vm_growstack_c.eh:
5af8: 44 00 00 00 udf #68
5afc: 04 00 00 00 udf #4
5b00: f8 ff ff ff <unknown>
5b04: 08 00 00 00 udf #8
5b08: 00 0e d0 01 <unknown>
5b0c: 9e 01 9d 02 <unknown>
5b10: 93 03 94 04 <unknown>
5b14: 95 05 96 06 <unknown>
5b18: 97 07 98 08 <unknown>
5b1c: 99 09 9a 0a and w25, w12, w26, asr #2
5b20: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5b24: 05 48 0d 05 <unknown>
5b28: 49 0e 05 4a eor w9, w18, w5, lsl #3
5b2c: 0f 05 4b 10 adr x15, #614560
5b30: 05 4c 11 05 <unknown>
5b34: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5b38: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf344>
5b3c: 00 00 00 00 udf #0
0000000000005b40 _lj_vm_growstack_l.eh:
5b40: 44 00 00 00 udf #68
5b44: 04 00 00 00 udf #4
5b48: f8 ff ff ff <unknown>
5b4c: 4c 00 00 00 udf #76
5b50: 00 0e d0 01 <unknown>
5b54: 9e 01 9d 02 <unknown>
5b58: 93 03 94 04 <unknown>
5b5c: 95 05 96 06 <unknown>
5b60: 97 07 98 08 <unknown>
5b64: 99 09 9a 0a and w25, w12, w26, asr #2
5b68: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5b6c: 05 48 0d 05 <unknown>
5b70: 49 0e 05 4a eor w9, w18, w5, lsl #3
5b74: 0f 05 4b 10 adr x15, #614560
5b78: 05 4c 11 05 <unknown>
5b7c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5b80: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf38c>
5b84: 00 00 00 00 udf #0
0000000000005b88 _lj_vm_resume.eh:
5b88: 44 00 00 00 udf #68
5b8c: 04 00 00 00 udf #4
5b90: f8 ff ff ff <unknown>
5b94: a0 00 00 00 udf #160
5b98: 00 0e d0 01 <unknown>
5b9c: 9e 01 9d 02 <unknown>
5ba0: 93 03 94 04 <unknown>
5ba4: 95 05 96 06 <unknown>
5ba8: 97 07 98 08 <unknown>
5bac: 99 09 9a 0a and w25, w12, w26, asr #2
5bb0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5bb4: 05 48 0d 05 <unknown>
5bb8: 49 0e 05 4a eor w9, w18, w5, lsl #3
5bbc: 0f 05 4b 10 adr x15, #614560
5bc0: 05 4c 11 05 <unknown>
5bc4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5bc8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf3d4>
5bcc: 00 00 00 00 udf #0
0000000000005bd0 _lj_vm_pcall.eh:
5bd0: 44 00 00 00 udf #68
5bd4: 04 00 00 00 udf #4
5bd8: f8 ff ff ff <unknown>
5bdc: 3c 00 00 00 udf #60
5be0: 00 0e d0 01 <unknown>
5be4: 9e 01 9d 02 <unknown>
5be8: 93 03 94 04 <unknown>
5bec: 95 05 96 06 <unknown>
5bf0: 97 07 98 08 <unknown>
5bf4: 99 09 9a 0a and w25, w12, w26, asr #2
5bf8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5bfc: 05 48 0d 05 <unknown>
5c00: 49 0e 05 4a eor w9, w18, w5, lsl #3
5c04: 0f 05 4b 10 adr x15, #614560
5c08: 05 4c 11 05 <unknown>
5c0c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5c10: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf41c>
5c14: 00 00 00 00 udf #0
0000000000005c18 _lj_vm_call.eh:
5c18: 44 00 00 00 udf #68
5c1c: 04 00 00 00 udf #4
5c20: f8 ff ff ff <unknown>
5c24: 7c 00 00 00 udf #124
5c28: 00 0e d0 01 <unknown>
5c2c: 9e 01 9d 02 <unknown>
5c30: 93 03 94 04 <unknown>
5c34: 95 05 96 06 <unknown>
5c38: 97 07 98 08 <unknown>
5c3c: 99 09 9a 0a and w25, w12, w26, asr #2
5c40: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5c44: 05 48 0d 05 <unknown>
5c48: 49 0e 05 4a eor w9, w18, w5, lsl #3
5c4c: 0f 05 4b 10 adr x15, #614560
5c50: 05 4c 11 05 <unknown>
5c54: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5c58: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf464>
5c5c: 00 00 00 00 udf #0
0000000000005c60 _lj_vm_call_dispatch.eh:
5c60: 44 00 00 00 udf #68
5c64: 04 00 00 00 udf #4
5c68: f8 ff ff ff <unknown>
5c6c: 14 00 00 00 udf #20
5c70: 00 0e d0 01 <unknown>
5c74: 9e 01 9d 02 <unknown>
5c78: 93 03 94 04 <unknown>
5c7c: 95 05 96 06 <unknown>
5c80: 97 07 98 08 <unknown>
5c84: 99 09 9a 0a and w25, w12, w26, asr #2
5c88: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5c8c: 05 48 0d 05 <unknown>
5c90: 49 0e 05 4a eor w9, w18, w5, lsl #3
5c94: 0f 05 4b 10 adr x15, #614560
5c98: 05 4c 11 05 <unknown>
5c9c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5ca0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf4ac>
5ca4: 00 00 00 00 udf #0
0000000000005ca8 _lj_vm_call_dispatch_f.eh:
5ca8: 44 00 00 00 udf #68
5cac: 04 00 00 00 udf #4
5cb0: f8 ff ff ff <unknown>
5cb4: 20 00 00 00 udf #32
5cb8: 00 0e d0 01 <unknown>
5cbc: 9e 01 9d 02 <unknown>
5cc0: 93 03 94 04 <unknown>
5cc4: 95 05 96 06 <unknown>
5cc8: 97 07 98 08 <unknown>
5ccc: 99 09 9a 0a and w25, w12, w26, asr #2
5cd0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5cd4: 05 48 0d 05 <unknown>
5cd8: 49 0e 05 4a eor w9, w18, w5, lsl #3
5cdc: 0f 05 4b 10 adr x15, #614560
5ce0: 05 4c 11 05 <unknown>
5ce4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5ce8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf4f4>
5cec: 00 00 00 00 udf #0
0000000000005cf0 _lj_vm_cpcall.eh:
5cf0: 44 00 00 00 udf #68
5cf4: 04 00 00 00 udf #4
5cf8: f8 ff ff ff <unknown>
5cfc: 78 00 00 00 udf #120
5d00: 00 0e d0 01 <unknown>
5d04: 9e 01 9d 02 <unknown>
5d08: 93 03 94 04 <unknown>
5d0c: 95 05 96 06 <unknown>
5d10: 97 07 98 08 <unknown>
5d14: 99 09 9a 0a and w25, w12, w26, asr #2
5d18: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5d1c: 05 48 0d 05 <unknown>
5d20: 49 0e 05 4a eor w9, w18, w5, lsl #3
5d24: 0f 05 4b 10 adr x15, #614560
5d28: 05 4c 11 05 <unknown>
5d2c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5d30: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf53c>
5d34: 00 00 00 00 udf #0
0000000000005d38 _lj_cont_dispatch.eh:
5d38: 44 00 00 00 udf #68
5d3c: 04 00 00 00 udf #4
5d40: f8 ff ff ff <unknown>
5d44: 44 00 00 00 udf #68
5d48: 00 0e d0 01 <unknown>
5d4c: 9e 01 9d 02 <unknown>
5d50: 93 03 94 04 <unknown>
5d54: 95 05 96 06 <unknown>
5d58: 97 07 98 08 <unknown>
5d5c: 99 09 9a 0a and w25, w12, w26, asr #2
5d60: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5d64: 05 48 0d 05 <unknown>
5d68: 49 0e 05 4a eor w9, w18, w5, lsl #3
5d6c: 0f 05 4b 10 adr x15, #614560
5d70: 05 4c 11 05 <unknown>
5d74: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5d78: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf584>
5d7c: 00 00 00 00 udf #0
0000000000005d80 _lj_cont_cat.eh:
5d80: 44 00 00 00 udf #68
5d84: 04 00 00 00 udf #4
5d88: f8 ff ff ff <unknown>
5d8c: 38 00 00 00 udf #56
5d90: 00 0e d0 01 <unknown>
5d94: 9e 01 9d 02 <unknown>
5d98: 93 03 94 04 <unknown>
5d9c: 95 05 96 06 <unknown>
5da0: 97 07 98 08 <unknown>
5da4: 99 09 9a 0a and w25, w12, w26, asr #2
5da8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5dac: 05 48 0d 05 <unknown>
5db0: 49 0e 05 4a eor w9, w18, w5, lsl #3
5db4: 0f 05 4b 10 adr x15, #614560
5db8: 05 4c 11 05 <unknown>
5dbc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5dc0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf5cc>
5dc4: 00 00 00 00 udf #0
0000000000005dc8 _lj_vmeta_tgets1.eh:
5dc8: 44 00 00 00 udf #68
5dcc: 04 00 00 00 udf #4
5dd0: f8 ff ff ff <unknown>
5dd4: 10 00 00 00 udf #16
5dd8: 00 0e d0 01 <unknown>
5ddc: 9e 01 9d 02 <unknown>
5de0: 93 03 94 04 <unknown>
5de4: 95 05 96 06 <unknown>
5de8: 97 07 98 08 <unknown>
5dec: 99 09 9a 0a and w25, w12, w26, asr #2
5df0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5df4: 05 48 0d 05 <unknown>
5df8: 49 0e 05 4a eor w9, w18, w5, lsl #3
5dfc: 0f 05 4b 10 adr x15, #614560
5e00: 05 4c 11 05 <unknown>
5e04: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5e08: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf614>
5e0c: 00 00 00 00 udf #0
0000000000005e10 _lj_vmeta_tgets.eh:
5e10: 44 00 00 00 udf #68
5e14: 04 00 00 00 udf #4
5e18: f8 ff ff ff <unknown>
5e1c: 18 00 00 00 udf #24
5e20: 00 0e d0 01 <unknown>
5e24: 9e 01 9d 02 <unknown>
5e28: 93 03 94 04 <unknown>
5e2c: 95 05 96 06 <unknown>
5e30: 97 07 98 08 <unknown>
5e34: 99 09 9a 0a and w25, w12, w26, asr #2
5e38: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5e3c: 05 48 0d 05 <unknown>
5e40: 49 0e 05 4a eor w9, w18, w5, lsl #3
5e44: 0f 05 4b 10 adr x15, #614560
5e48: 05 4c 11 05 <unknown>
5e4c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5e50: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf65c>
5e54: 00 00 00 00 udf #0
0000000000005e58 _lj_vmeta_tgetb.eh:
5e58: 44 00 00 00 udf #68
5e5c: 04 00 00 00 udf #4
5e60: f8 ff ff ff <unknown>
5e64: 14 00 00 00 udf #20
5e68: 00 0e d0 01 <unknown>
5e6c: 9e 01 9d 02 <unknown>
5e70: 93 03 94 04 <unknown>
5e74: 95 05 96 06 <unknown>
5e78: 97 07 98 08 <unknown>
5e7c: 99 09 9a 0a and w25, w12, w26, asr #2
5e80: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5e84: 05 48 0d 05 <unknown>
5e88: 49 0e 05 4a eor w9, w18, w5, lsl #3
5e8c: 0f 05 4b 10 adr x15, #614560
5e90: 05 4c 11 05 <unknown>
5e94: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5e98: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf6a4>
5e9c: 00 00 00 00 udf #0
0000000000005ea0 _lj_vmeta_tgetv.eh:
5ea0: 44 00 00 00 udf #68
5ea4: 04 00 00 00 udf #4
5ea8: f8 ff ff ff <unknown>
5eac: 5c 00 00 00 udf #92
5eb0: 00 0e d0 01 <unknown>
5eb4: 9e 01 9d 02 <unknown>
5eb8: 93 03 94 04 <unknown>
5ebc: 95 05 96 06 <unknown>
5ec0: 97 07 98 08 <unknown>
5ec4: 99 09 9a 0a and w25, w12, w26, asr #2
5ec8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5ecc: 05 48 0d 05 <unknown>
5ed0: 49 0e 05 4a eor w9, w18, w5, lsl #3
5ed4: 0f 05 4b 10 adr x15, #614560
5ed8: 05 4c 11 05 <unknown>
5edc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5ee0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf6ec>
5ee4: 00 00 00 00 udf #0
0000000000005ee8 _lj_vmeta_tgetr.eh:
5ee8: 44 00 00 00 udf #68
5eec: 04 00 00 00 udf #4
5ef0: f8 ff ff ff <unknown>
5ef4: 18 00 00 00 udf #24
5ef8: 00 0e d0 01 <unknown>
5efc: 9e 01 9d 02 <unknown>
5f00: 93 03 94 04 <unknown>
5f04: 95 05 96 06 <unknown>
5f08: 97 07 98 08 <unknown>
5f0c: 99 09 9a 0a and w25, w12, w26, asr #2
5f10: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5f14: 05 48 0d 05 <unknown>
5f18: 49 0e 05 4a eor w9, w18, w5, lsl #3
5f1c: 0f 05 4b 10 adr x15, #614560
5f20: 05 4c 11 05 <unknown>
5f24: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5f28: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf734>
5f2c: 00 00 00 00 udf #0
0000000000005f30 _lj_vmeta_tsets1.eh:
5f30: 44 00 00 00 udf #68
5f34: 04 00 00 00 udf #4
5f38: f8 ff ff ff <unknown>
5f3c: 10 00 00 00 udf #16
5f40: 00 0e d0 01 <unknown>
5f44: 9e 01 9d 02 <unknown>
5f48: 93 03 94 04 <unknown>
5f4c: 95 05 96 06 <unknown>
5f50: 97 07 98 08 <unknown>
5f54: 99 09 9a 0a and w25, w12, w26, asr #2
5f58: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5f5c: 05 48 0d 05 <unknown>
5f60: 49 0e 05 4a eor w9, w18, w5, lsl #3
5f64: 0f 05 4b 10 adr x15, #614560
5f68: 05 4c 11 05 <unknown>
5f6c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5f70: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf77c>
5f74: 00 00 00 00 udf #0
0000000000005f78 _lj_vmeta_tsets.eh:
5f78: 44 00 00 00 udf #68
5f7c: 04 00 00 00 udf #4
5f80: f8 ff ff ff <unknown>
5f84: 18 00 00 00 udf #24
5f88: 00 0e d0 01 <unknown>
5f8c: 9e 01 9d 02 <unknown>
5f90: 93 03 94 04 <unknown>
5f94: 95 05 96 06 <unknown>
5f98: 97 07 98 08 <unknown>
5f9c: 99 09 9a 0a and w25, w12, w26, asr #2
5fa0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5fa4: 05 48 0d 05 <unknown>
5fa8: 49 0e 05 4a eor w9, w18, w5, lsl #3
5fac: 0f 05 4b 10 adr x15, #614560
5fb0: 05 4c 11 05 <unknown>
5fb4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
5fb8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf7c4>
5fbc: 00 00 00 00 udf #0
0000000000005fc0 _lj_vmeta_tsetb.eh:
5fc0: 44 00 00 00 udf #68
5fc4: 04 00 00 00 udf #4
5fc8: f8 ff ff ff <unknown>
5fcc: 14 00 00 00 udf #20
5fd0: 00 0e d0 01 <unknown>
5fd4: 9e 01 9d 02 <unknown>
5fd8: 93 03 94 04 <unknown>
5fdc: 95 05 96 06 <unknown>
5fe0: 97 07 98 08 <unknown>
5fe4: 99 09 9a 0a and w25, w12, w26, asr #2
5fe8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
5fec: 05 48 0d 05 <unknown>
5ff0: 49 0e 05 4a eor w9, w18, w5, lsl #3
5ff4: 0f 05 4b 10 adr x15, #614560
5ff8: 05 4c 11 05 <unknown>
5ffc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6000: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf80c>
6004: 00 00 00 00 udf #0
0000000000006008 _lj_vmeta_tsetv.eh:
6008: 44 00 00 00 udf #68
600c: 04 00 00 00 udf #4
6010: f8 ff ff ff <unknown>
6014: 60 00 00 00 udf #96
6018: 00 0e d0 01 <unknown>
601c: 9e 01 9d 02 <unknown>
6020: 93 03 94 04 <unknown>
6024: 95 05 96 06 <unknown>
6028: 97 07 98 08 <unknown>
602c: 99 09 9a 0a and w25, w12, w26, asr #2
6030: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6034: 05 48 0d 05 <unknown>
6038: 49 0e 05 4a eor w9, w18, w5, lsl #3
603c: 0f 05 4b 10 adr x15, #614560
6040: 05 4c 11 05 <unknown>
6044: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6048: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf854>
604c: 00 00 00 00 udf #0
0000000000006050 _lj_vmeta_tsetr.eh:
6050: 44 00 00 00 udf #68
6054: 04 00 00 00 udf #4
6058: f8 ff ff ff <unknown>
605c: 18 00 00 00 udf #24
6060: 00 0e d0 01 <unknown>
6064: 9e 01 9d 02 <unknown>
6068: 93 03 94 04 <unknown>
606c: 95 05 96 06 <unknown>
6070: 97 07 98 08 <unknown>
6074: 99 09 9a 0a and w25, w12, w26, asr #2
6078: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
607c: 05 48 0d 05 <unknown>
6080: 49 0e 05 4a eor w9, w18, w5, lsl #3
6084: 0f 05 4b 10 adr x15, #614560
6088: 05 4c 11 05 <unknown>
608c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6090: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf89c>
6094: 00 00 00 00 udf #0
0000000000006098 _lj_vmeta_comp.eh:
6098: 44 00 00 00 udf #68
609c: 04 00 00 00 udf #4
60a0: f8 ff ff ff <unknown>
60a4: 3c 00 00 00 udf #60
60a8: 00 0e d0 01 <unknown>
60ac: 9e 01 9d 02 <unknown>
60b0: 93 03 94 04 <unknown>
60b4: 95 05 96 06 <unknown>
60b8: 97 07 98 08 <unknown>
60bc: 99 09 9a 0a and w25, w12, w26, asr #2
60c0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
60c4: 05 48 0d 05 <unknown>
60c8: 49 0e 05 4a eor w9, w18, w5, lsl #3
60cc: 0f 05 4b 10 adr x15, #614560
60d0: 05 4c 11 05 <unknown>
60d4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
60d8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf8e4>
60dc: 00 00 00 00 udf #0
00000000000060e0 _lj_cont_nop.eh:
60e0: 44 00 00 00 udf #68
60e4: 04 00 00 00 udf #4
60e8: f8 ff ff ff <unknown>
60ec: 18 00 00 00 udf #24
60f0: 00 0e d0 01 <unknown>
60f4: 9e 01 9d 02 <unknown>
60f8: 93 03 94 04 <unknown>
60fc: 95 05 96 06 <unknown>
6100: 97 07 98 08 <unknown>
6104: 99 09 9a 0a and w25, w12, w26, asr #2
6108: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
610c: 05 48 0d 05 <unknown>
6110: 49 0e 05 4a eor w9, w18, w5, lsl #3
6114: 0f 05 4b 10 adr x15, #614560
6118: 05 4c 11 05 <unknown>
611c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6120: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf92c>
6124: 00 00 00 00 udf #0
0000000000006128 _lj_cont_ra.eh:
6128: 44 00 00 00 udf #68
612c: 04 00 00 00 udf #4
6130: f8 ff ff ff <unknown>
6134: 14 00 00 00 udf #20
6138: 00 0e d0 01 <unknown>
613c: 9e 01 9d 02 <unknown>
6140: 93 03 94 04 <unknown>
6144: 95 05 96 06 <unknown>
6148: 97 07 98 08 <unknown>
614c: 99 09 9a 0a and w25, w12, w26, asr #2
6150: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6154: 05 48 0d 05 <unknown>
6158: 49 0e 05 4a eor w9, w18, w5, lsl #3
615c: 0f 05 4b 10 adr x15, #614560
6160: 05 4c 11 05 <unknown>
6164: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6168: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf974>
616c: 00 00 00 00 udf #0
0000000000006170 _lj_cont_condt.eh:
6170: 44 00 00 00 udf #68
6174: 04 00 00 00 udf #4
6178: f8 ff ff ff <unknown>
617c: 10 00 00 00 udf #16
6180: 00 0e d0 01 <unknown>
6184: 9e 01 9d 02 <unknown>
6188: 93 03 94 04 <unknown>
618c: 95 05 96 06 <unknown>
6190: 97 07 98 08 <unknown>
6194: 99 09 9a 0a and w25, w12, w26, asr #2
6198: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
619c: 05 48 0d 05 <unknown>
61a0: 49 0e 05 4a eor w9, w18, w5, lsl #3
61a4: 0f 05 4b 10 adr x15, #614560
61a8: 05 4c 11 05 <unknown>
61ac: 4d 12 05 4e tbx.16b v13, { v18 }, v5
61b0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bf9bc>
61b4: 00 00 00 00 udf #0
00000000000061b8 _lj_cont_condf.eh:
61b8: 44 00 00 00 udf #68
61bc: 04 00 00 00 udf #4
61c0: f8 ff ff ff <unknown>
61c4: 10 00 00 00 udf #16
61c8: 00 0e d0 01 <unknown>
61cc: 9e 01 9d 02 <unknown>
61d0: 93 03 94 04 <unknown>
61d4: 95 05 96 06 <unknown>
61d8: 97 07 98 08 <unknown>
61dc: 99 09 9a 0a and w25, w12, w26, asr #2
61e0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
61e4: 05 48 0d 05 <unknown>
61e8: 49 0e 05 4a eor w9, w18, w5, lsl #3
61ec: 0f 05 4b 10 adr x15, #614560
61f0: 05 4c 11 05 <unknown>
61f4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
61f8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfa04>
61fc: 00 00 00 00 udf #0
0000000000006200 _lj_vmeta_equal.eh:
6200: 44 00 00 00 udf #68
6204: 04 00 00 00 udf #4
6208: f8 ff ff ff <unknown>
620c: 1c 00 00 00 udf #28
6210: 00 0e d0 01 <unknown>
6214: 9e 01 9d 02 <unknown>
6218: 93 03 94 04 <unknown>
621c: 95 05 96 06 <unknown>
6220: 97 07 98 08 <unknown>
6224: 99 09 9a 0a and w25, w12, w26, asr #2
6228: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
622c: 05 48 0d 05 <unknown>
6230: 49 0e 05 4a eor w9, w18, w5, lsl #3
6234: 0f 05 4b 10 adr x15, #614560
6238: 05 4c 11 05 <unknown>
623c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6240: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfa4c>
6244: 00 00 00 00 udf #0
0000000000006248 _lj_vmeta_equal_cd.eh:
6248: 44 00 00 00 udf #68
624c: 04 00 00 00 udf #4
6250: f8 ff ff ff <unknown>
6254: 1c 00 00 00 udf #28
6258: 00 0e d0 01 <unknown>
625c: 9e 01 9d 02 <unknown>
6260: 93 03 94 04 <unknown>
6264: 95 05 96 06 <unknown>
6268: 97 07 98 08 <unknown>
626c: 99 09 9a 0a and w25, w12, w26, asr #2
6270: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6274: 05 48 0d 05 <unknown>
6278: 49 0e 05 4a eor w9, w18, w5, lsl #3
627c: 0f 05 4b 10 adr x15, #614560
6280: 05 4c 11 05 <unknown>
6284: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6288: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfa94>
628c: 00 00 00 00 udf #0
0000000000006290 _lj_vmeta_istype.eh:
6290: 44 00 00 00 udf #68
6294: 04 00 00 00 udf #4
6298: f8 ff ff ff <unknown>
629c: 20 00 00 00 udf #32
62a0: 00 0e d0 01 <unknown>
62a4: 9e 01 9d 02 <unknown>
62a8: 93 03 94 04 <unknown>
62ac: 95 05 96 06 <unknown>
62b0: 97 07 98 08 <unknown>
62b4: 99 09 9a 0a and w25, w12, w26, asr #2
62b8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
62bc: 05 48 0d 05 <unknown>
62c0: 49 0e 05 4a eor w9, w18, w5, lsl #3
62c4: 0f 05 4b 10 adr x15, #614560
62c8: 05 4c 11 05 <unknown>
62cc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
62d0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfadc>
62d4: 00 00 00 00 udf #0
00000000000062d8 _lj_vmeta_arith_vn.eh:
62d8: 44 00 00 00 udf #68
62dc: 04 00 00 00 udf #4
62e0: f8 ff ff ff <unknown>
62e4: 0c 00 00 00 udf #12
62e8: 00 0e d0 01 <unknown>
62ec: 9e 01 9d 02 <unknown>
62f0: 93 03 94 04 <unknown>
62f4: 95 05 96 06 <unknown>
62f8: 97 07 98 08 <unknown>
62fc: 99 09 9a 0a and w25, w12, w26, asr #2
6300: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6304: 05 48 0d 05 <unknown>
6308: 49 0e 05 4a eor w9, w18, w5, lsl #3
630c: 0f 05 4b 10 adr x15, #614560
6310: 05 4c 11 05 <unknown>
6314: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6318: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfb24>
631c: 00 00 00 00 udf #0
0000000000006320 _lj_vmeta_arith_nv.eh:
6320: 44 00 00 00 udf #68
6324: 04 00 00 00 udf #4
6328: f8 ff ff ff <unknown>
632c: 0c 00 00 00 udf #12
6330: 00 0e d0 01 <unknown>
6334: 9e 01 9d 02 <unknown>
6338: 93 03 94 04 <unknown>
633c: 95 05 96 06 <unknown>
6340: 97 07 98 08 <unknown>
6344: 99 09 9a 0a and w25, w12, w26, asr #2
6348: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
634c: 05 48 0d 05 <unknown>
6350: 49 0e 05 4a eor w9, w18, w5, lsl #3
6354: 0f 05 4b 10 adr x15, #614560
6358: 05 4c 11 05 <unknown>
635c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6360: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfb6c>
6364: 00 00 00 00 udf #0
0000000000006368 _lj_vmeta_unm.eh:
6368: 44 00 00 00 udf #68
636c: 04 00 00 00 udf #4
6370: f8 ff ff ff <unknown>
6374: 0c 00 00 00 udf #12
6378: 00 0e d0 01 <unknown>
637c: 9e 01 9d 02 <unknown>
6380: 93 03 94 04 <unknown>
6384: 95 05 96 06 <unknown>
6388: 97 07 98 08 <unknown>
638c: 99 09 9a 0a and w25, w12, w26, asr #2
6390: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6394: 05 48 0d 05 <unknown>
6398: 49 0e 05 4a eor w9, w18, w5, lsl #3
639c: 0f 05 4b 10 adr x15, #614560
63a0: 05 4c 11 05 <unknown>
63a4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
63a8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfbb4>
63ac: 00 00 00 00 udf #0
00000000000063b0 _lj_vmeta_arith_vv.eh:
63b0: 44 00 00 00 udf #68
63b4: 04 00 00 00 udf #4
63b8: f8 ff ff ff <unknown>
63bc: 24 00 00 00 udf #36
63c0: 00 0e d0 01 <unknown>
63c4: 9e 01 9d 02 <unknown>
63c8: 93 03 94 04 <unknown>
63cc: 95 05 96 06 <unknown>
63d0: 97 07 98 08 <unknown>
63d4: 99 09 9a 0a and w25, w12, w26, asr #2
63d8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
63dc: 05 48 0d 05 <unknown>
63e0: 49 0e 05 4a eor w9, w18, w5, lsl #3
63e4: 0f 05 4b 10 adr x15, #614560
63e8: 05 4c 11 05 <unknown>
63ec: 4d 12 05 4e tbx.16b v13, { v18 }, v5
63f0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfbfc>
63f4: 00 00 00 00 udf #0
00000000000063f8 _lj_vmeta_binop.eh:
63f8: 44 00 00 00 udf #68
63fc: 04 00 00 00 udf #4
6400: f8 ff ff ff <unknown>
6404: 18 00 00 00 udf #24
6408: 00 0e d0 01 <unknown>
640c: 9e 01 9d 02 <unknown>
6410: 93 03 94 04 <unknown>
6414: 95 05 96 06 <unknown>
6418: 97 07 98 08 <unknown>
641c: 99 09 9a 0a and w25, w12, w26, asr #2
6420: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6424: 05 48 0d 05 <unknown>
6428: 49 0e 05 4a eor w9, w18, w5, lsl #3
642c: 0f 05 4b 10 adr x15, #614560
6430: 05 4c 11 05 <unknown>
6434: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6438: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfc44>
643c: 00 00 00 00 udf #0
0000000000006440 _lj_vmeta_len.eh:
6440: 44 00 00 00 udf #68
6444: 04 00 00 00 udf #4
6448: f8 ff ff ff <unknown>
644c: 18 00 00 00 udf #24
6450: 00 0e d0 01 <unknown>
6454: 9e 01 9d 02 <unknown>
6458: 93 03 94 04 <unknown>
645c: 95 05 96 06 <unknown>
6460: 97 07 98 08 <unknown>
6464: 99 09 9a 0a and w25, w12, w26, asr #2
6468: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
646c: 05 48 0d 05 <unknown>
6470: 49 0e 05 4a eor w9, w18, w5, lsl #3
6474: 0f 05 4b 10 adr x15, #614560
6478: 05 4c 11 05 <unknown>
647c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6480: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfc8c>
6484: 00 00 00 00 udf #0
0000000000006488 _lj_vmeta_call.eh:
6488: 44 00 00 00 udf #68
648c: 04 00 00 00 udf #4
6490: f8 ff ff ff <unknown>
6494: 44 00 00 00 udf #68
6498: 00 0e d0 01 <unknown>
649c: 9e 01 9d 02 <unknown>
64a0: 93 03 94 04 <unknown>
64a4: 95 05 96 06 <unknown>
64a8: 97 07 98 08 <unknown>
64ac: 99 09 9a 0a and w25, w12, w26, asr #2
64b0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
64b4: 05 48 0d 05 <unknown>
64b8: 49 0e 05 4a eor w9, w18, w5, lsl #3
64bc: 0f 05 4b 10 adr x15, #614560
64c0: 05 4c 11 05 <unknown>
64c4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
64c8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfcd4>
64cc: 00 00 00 00 udf #0
00000000000064d0 _lj_vmeta_callt.eh:
64d0: 44 00 00 00 udf #68
64d4: 04 00 00 00 udf #4
64d8: f8 ff ff ff <unknown>
64dc: 2c 00 00 00 udf #44
64e0: 00 0e d0 01 <unknown>
64e4: 9e 01 9d 02 <unknown>
64e8: 93 03 94 04 <unknown>
64ec: 95 05 96 06 <unknown>
64f0: 97 07 98 08 <unknown>
64f4: 99 09 9a 0a and w25, w12, w26, asr #2
64f8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
64fc: 05 48 0d 05 <unknown>
6500: 49 0e 05 4a eor w9, w18, w5, lsl #3
6504: 0f 05 4b 10 adr x15, #614560
6508: 05 4c 11 05 <unknown>
650c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6510: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfd1c>
6514: 00 00 00 00 udf #0
0000000000006518 _lj_vmeta_for.eh:
6518: 44 00 00 00 udf #68
651c: 04 00 00 00 udf #4
6520: f8 ff ff ff <unknown>
6524: 30 00 00 00 udf #48
6528: 00 0e d0 01 <unknown>
652c: 9e 01 9d 02 <unknown>
6530: 93 03 94 04 <unknown>
6534: 95 05 96 06 <unknown>
6538: 97 07 98 08 <unknown>
653c: 99 09 9a 0a and w25, w12, w26, asr #2
6540: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6544: 05 48 0d 05 <unknown>
6548: 49 0e 05 4a eor w9, w18, w5, lsl #3
654c: 0f 05 4b 10 adr x15, #614560
6550: 05 4c 11 05 <unknown>
6554: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6558: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfd64>
655c: 00 00 00 00 udf #0
0000000000006560 _lj_ff_assert.eh:
6560: 44 00 00 00 udf #68
6564: 04 00 00 00 udf #4
6568: f8 ff ff ff <unknown>
656c: 44 00 00 00 udf #68
6570: 00 0e d0 01 <unknown>
6574: 9e 01 9d 02 <unknown>
6578: 93 03 94 04 <unknown>
657c: 95 05 96 06 <unknown>
6580: 97 07 98 08 <unknown>
6584: 99 09 9a 0a and w25, w12, w26, asr #2
6588: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
658c: 05 48 0d 05 <unknown>
6590: 49 0e 05 4a eor w9, w18, w5, lsl #3
6594: 0f 05 4b 10 adr x15, #614560
6598: 05 4c 11 05 <unknown>
659c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
65a0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfdac>
65a4: 00 00 00 00 udf #0
00000000000065a8 _lj_ff_type.eh:
65a8: 44 00 00 00 udf #68
65ac: 04 00 00 00 udf #4
65b0: f8 ff ff ff <unknown>
65b4: 28 00 00 00 udf #40
65b8: 00 0e d0 01 <unknown>
65bc: 9e 01 9d 02 <unknown>
65c0: 93 03 94 04 <unknown>
65c4: 95 05 96 06 <unknown>
65c8: 97 07 98 08 <unknown>
65cc: 99 09 9a 0a and w25, w12, w26, asr #2
65d0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
65d4: 05 48 0d 05 <unknown>
65d8: 49 0e 05 4a eor w9, w18, w5, lsl #3
65dc: 0f 05 4b 10 adr x15, #614560
65e0: 05 4c 11 05 <unknown>
65e4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
65e8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfdf4>
65ec: 00 00 00 00 udf #0
00000000000065f0 _lj_ff_getmetatable.eh:
65f0: 44 00 00 00 udf #68
65f4: 04 00 00 00 udf #4
65f8: f8 ff ff ff <unknown>
65fc: 94 00 00 00 udf #148
6600: 00 0e d0 01 <unknown>
6604: 9e 01 9d 02 <unknown>
6608: 93 03 94 04 <unknown>
660c: 95 05 96 06 <unknown>
6610: 97 07 98 08 <unknown>
6614: 99 09 9a 0a and w25, w12, w26, asr #2
6618: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
661c: 05 48 0d 05 <unknown>
6620: 49 0e 05 4a eor w9, w18, w5, lsl #3
6624: 0f 05 4b 10 adr x15, #614560
6628: 05 4c 11 05 <unknown>
662c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6630: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfe3c>
6634: 00 00 00 00 udf #0
0000000000006638 _lj_ff_setmetatable.eh:
6638: 44 00 00 00 udf #68
663c: 04 00 00 00 udf #4
6640: f8 ff ff ff <unknown>
6644: 58 00 00 00 udf #88
6648: 00 0e d0 01 <unknown>
664c: 9e 01 9d 02 <unknown>
6650: 93 03 94 04 <unknown>
6654: 95 05 96 06 <unknown>
6658: 97 07 98 08 <unknown>
665c: 99 09 9a 0a and w25, w12, w26, asr #2
6660: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6664: 05 48 0d 05 <unknown>
6668: 49 0e 05 4a eor w9, w18, w5, lsl #3
666c: 0f 05 4b 10 adr x15, #614560
6670: 05 4c 11 05 <unknown>
6674: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6678: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfe84>
667c: 00 00 00 00 udf #0
0000000000006680 _lj_ff_rawget.eh:
6680: 44 00 00 00 udf #68
6684: 04 00 00 00 udf #4
6688: f8 ff ff ff <unknown>
668c: 30 00 00 00 udf #48
6690: 00 0e d0 01 <unknown>
6694: 9e 01 9d 02 <unknown>
6698: 93 03 94 04 <unknown>
669c: 95 05 96 06 <unknown>
66a0: 97 07 98 08 <unknown>
66a4: 99 09 9a 0a and w25, w12, w26, asr #2
66a8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
66ac: 05 48 0d 05 <unknown>
66b0: 49 0e 05 4a eor w9, w18, w5, lsl #3
66b4: 0f 05 4b 10 adr x15, #614560
66b8: 05 4c 11 05 <unknown>
66bc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
66c0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bfecc>
66c4: 00 00 00 00 udf #0
00000000000066c8 _lj_ff_tonumber.eh:
66c8: 44 00 00 00 udf #68
66cc: 04 00 00 00 udf #4
66d0: f8 ff ff ff <unknown>
66d4: 18 00 00 00 udf #24
66d8: 00 0e d0 01 <unknown>
66dc: 9e 01 9d 02 <unknown>
66e0: 93 03 94 04 <unknown>
66e4: 95 05 96 06 <unknown>
66e8: 97 07 98 08 <unknown>
66ec: 99 09 9a 0a and w25, w12, w26, asr #2
66f0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
66f4: 05 48 0d 05 <unknown>
66f8: 49 0e 05 4a eor w9, w18, w5, lsl #3
66fc: 0f 05 4b 10 adr x15, #614560
6700: 05 4c 11 05 <unknown>
6704: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6708: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bff14>
670c: 00 00 00 00 udf #0
0000000000006710 _lj_ff_tostring.eh:
6710: 44 00 00 00 udf #68
6714: 04 00 00 00 udf #4
6718: f8 ff ff ff <unknown>
671c: 5c 00 00 00 udf #92
6720: 00 0e d0 01 <unknown>
6724: 9e 01 9d 02 <unknown>
6728: 93 03 94 04 <unknown>
672c: 95 05 96 06 <unknown>
6730: 97 07 98 08 <unknown>
6734: 99 09 9a 0a and w25, w12, w26, asr #2
6738: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
673c: 05 48 0d 05 <unknown>
6740: 49 0e 05 4a eor w9, w18, w5, lsl #3
6744: 0f 05 4b 10 adr x15, #614560
6748: 05 4c 11 05 <unknown>
674c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6750: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bff5c>
6754: 00 00 00 00 udf #0
0000000000006758 _lj_ff_next.eh:
6758: 44 00 00 00 udf #68
675c: 04 00 00 00 udf #4
6760: f8 ff ff ff <unknown>
6764: 50 00 00 00 udf #80
6768: 00 0e d0 01 <unknown>
676c: 9e 01 9d 02 <unknown>
6770: 93 03 94 04 <unknown>
6774: 95 05 96 06 <unknown>
6778: 97 07 98 08 <unknown>
677c: 99 09 9a 0a and w25, w12, w26, asr #2
6780: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6784: 05 48 0d 05 <unknown>
6788: 49 0e 05 4a eor w9, w18, w5, lsl #3
678c: 0f 05 4b 10 adr x15, #614560
6790: 05 4c 11 05 <unknown>
6794: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6798: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bffa4>
679c: 00 00 00 00 udf #0
00000000000067a0 _lj_ff_pairs.eh:
67a0: 44 00 00 00 udf #68
67a4: 04 00 00 00 udf #4
67a8: f8 ff ff ff <unknown>
67ac: 34 00 00 00 udf #52
67b0: 00 0e d0 01 <unknown>
67b4: 9e 01 9d 02 <unknown>
67b8: 93 03 94 04 <unknown>
67bc: 95 05 96 06 <unknown>
67c0: 97 07 98 08 <unknown>
67c4: 99 09 9a 0a and w25, w12, w26, asr #2
67c8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
67cc: 05 48 0d 05 <unknown>
67d0: 49 0e 05 4a eor w9, w18, w5, lsl #3
67d4: 0f 05 4b 10 adr x15, #614560
67d8: 05 4c 11 05 <unknown>
67dc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
67e0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13bffec>
67e4: 00 00 00 00 udf #0
00000000000067e8 _lj_ff_ipairs_aux.eh:
67e8: 44 00 00 00 udf #68
67ec: 04 00 00 00 udf #4
67f0: f8 ff ff ff <unknown>
67f4: 78 00 00 00 udf #120
67f8: 00 0e d0 01 <unknown>
67fc: 9e 01 9d 02 <unknown>
6800: 93 03 94 04 <unknown>
6804: 95 05 96 06 <unknown>
6808: 97 07 98 08 <unknown>
680c: 99 09 9a 0a and w25, w12, w26, asr #2
6810: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6814: 05 48 0d 05 <unknown>
6818: 49 0e 05 4a eor w9, w18, w5, lsl #3
681c: 0f 05 4b 10 adr x15, #614560
6820: 05 4c 11 05 <unknown>
6824: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6828: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0034>
682c: 00 00 00 00 udf #0
0000000000006830 _lj_ff_ipairs.eh:
6830: 44 00 00 00 udf #68
6834: 04 00 00 00 udf #4
6838: f8 ff ff ff <unknown>
683c: 34 00 00 00 udf #52
6840: 00 0e d0 01 <unknown>
6844: 9e 01 9d 02 <unknown>
6848: 93 03 94 04 <unknown>
684c: 95 05 96 06 <unknown>
6850: 97 07 98 08 <unknown>
6854: 99 09 9a 0a and w25, w12, w26, asr #2
6858: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
685c: 05 48 0d 05 <unknown>
6860: 49 0e 05 4a eor w9, w18, w5, lsl #3
6864: 0f 05 4b 10 adr x15, #614560
6868: 05 4c 11 05 <unknown>
686c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6870: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c007c>
6874: 00 00 00 00 udf #0
0000000000006878 _lj_ff_pcall.eh:
6878: 44 00 00 00 udf #68
687c: 04 00 00 00 udf #4
6880: f8 ff ff ff <unknown>
6884: 38 00 00 00 udf #56
6888: 00 0e d0 01 <unknown>
688c: 9e 01 9d 02 <unknown>
6890: 93 03 94 04 <unknown>
6894: 95 05 96 06 <unknown>
6898: 97 07 98 08 <unknown>
689c: 99 09 9a 0a and w25, w12, w26, asr #2
68a0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
68a4: 05 48 0d 05 <unknown>
68a8: 49 0e 05 4a eor w9, w18, w5, lsl #3
68ac: 0f 05 4b 10 adr x15, #614560
68b0: 05 4c 11 05 <unknown>
68b4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
68b8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c00c4>
68bc: 00 00 00 00 udf #0
00000000000068c0 _lj_ff_xpcall.eh:
68c0: 44 00 00 00 udf #68
68c4: 04 00 00 00 udf #4
68c8: f8 ff ff ff <unknown>
68cc: 3c 00 00 00 udf #60
68d0: 00 0e d0 01 <unknown>
68d4: 9e 01 9d 02 <unknown>
68d8: 93 03 94 04 <unknown>
68dc: 95 05 96 06 <unknown>
68e0: 97 07 98 08 <unknown>
68e4: 99 09 9a 0a and w25, w12, w26, asr #2
68e8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
68ec: 05 48 0d 05 <unknown>
68f0: 49 0e 05 4a eor w9, w18, w5, lsl #3
68f4: 0f 05 4b 10 adr x15, #614560
68f8: 05 4c 11 05 <unknown>
68fc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6900: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c010c>
6904: 00 00 00 00 udf #0
0000000000006908 _lj_ff_coroutine_resume.eh:
6908: 44 00 00 00 udf #68
690c: 04 00 00 00 udf #4
6910: f8 ff ff ff <unknown>
6914: 3c 01 00 00 udf #316
6918: 00 0e d0 01 <unknown>
691c: 9e 01 9d 02 <unknown>
6920: 93 03 94 04 <unknown>
6924: 95 05 96 06 <unknown>
6928: 97 07 98 08 <unknown>
692c: 99 09 9a 0a and w25, w12, w26, asr #2
6930: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6934: 05 48 0d 05 <unknown>
6938: 49 0e 05 4a eor w9, w18, w5, lsl #3
693c: 0f 05 4b 10 adr x15, #614560
6940: 05 4c 11 05 <unknown>
6944: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6948: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0154>
694c: 00 00 00 00 udf #0
0000000000006950 _lj_ff_coroutine_wrap_aux.eh:
6950: 44 00 00 00 udf #68
6954: 04 00 00 00 udf #4
6958: f8 ff ff ff <unknown>
695c: 08 01 00 00 udf #264
6960: 00 0e d0 01 <unknown>
6964: 9e 01 9d 02 <unknown>
6968: 93 03 94 04 <unknown>
696c: 95 05 96 06 <unknown>
6970: 97 07 98 08 <unknown>
6974: 99 09 9a 0a and w25, w12, w26, asr #2
6978: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
697c: 05 48 0d 05 <unknown>
6980: 49 0e 05 4a eor w9, w18, w5, lsl #3
6984: 0f 05 4b 10 adr x15, #614560
6988: 05 4c 11 05 <unknown>
698c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6990: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c019c>
6994: 00 00 00 00 udf #0
0000000000006998 _lj_ff_coroutine_yield.eh:
6998: 44 00 00 00 udf #68
699c: 04 00 00 00 udf #4
69a0: f8 ff ff ff <unknown>
69a4: 20 00 00 00 udf #32
69a8: 00 0e d0 01 <unknown>
69ac: 9e 01 9d 02 <unknown>
69b0: 93 03 94 04 <unknown>
69b4: 95 05 96 06 <unknown>
69b8: 97 07 98 08 <unknown>
69bc: 99 09 9a 0a and w25, w12, w26, asr #2
69c0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
69c4: 05 48 0d 05 <unknown>
69c8: 49 0e 05 4a eor w9, w18, w5, lsl #3
69cc: 0f 05 4b 10 adr x15, #614560
69d0: 05 4c 11 05 <unknown>
69d4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
69d8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c01e4>
69dc: 00 00 00 00 udf #0
00000000000069e0 _lj_ff_math_floor.eh:
69e0: 44 00 00 00 udf #68
69e4: 04 00 00 00 udf #4
69e8: f8 ff ff ff <unknown>
69ec: 24 00 00 00 udf #36
69f0: 00 0e d0 01 <unknown>
69f4: 9e 01 9d 02 <unknown>
69f8: 93 03 94 04 <unknown>
69fc: 95 05 96 06 <unknown>
6a00: 97 07 98 08 <unknown>
6a04: 99 09 9a 0a and w25, w12, w26, asr #2
6a08: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6a0c: 05 48 0d 05 <unknown>
6a10: 49 0e 05 4a eor w9, w18, w5, lsl #3
6a14: 0f 05 4b 10 adr x15, #614560
6a18: 05 4c 11 05 <unknown>
6a1c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6a20: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c022c>
6a24: 00 00 00 00 udf #0
0000000000006a28 _lj_ff_math_ceil.eh:
6a28: 44 00 00 00 udf #68
6a2c: 04 00 00 00 udf #4
6a30: f8 ff ff ff <unknown>
6a34: 24 00 00 00 udf #36
6a38: 00 0e d0 01 <unknown>
6a3c: 9e 01 9d 02 <unknown>
6a40: 93 03 94 04 <unknown>
6a44: 95 05 96 06 <unknown>
6a48: 97 07 98 08 <unknown>
6a4c: 99 09 9a 0a and w25, w12, w26, asr #2
6a50: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6a54: 05 48 0d 05 <unknown>
6a58: 49 0e 05 4a eor w9, w18, w5, lsl #3
6a5c: 0f 05 4b 10 adr x15, #614560
6a60: 05 4c 11 05 <unknown>
6a64: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6a68: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0274>
6a6c: 00 00 00 00 udf #0
0000000000006a70 _lj_ff_math_abs.eh:
6a70: 44 00 00 00 udf #68
6a74: 04 00 00 00 udf #4
6a78: f8 ff ff ff <unknown>
6a7c: 30 00 00 00 udf #48
6a80: 00 0e d0 01 <unknown>
6a84: 9e 01 9d 02 <unknown>
6a88: 93 03 94 04 <unknown>
6a8c: 95 05 96 06 <unknown>
6a90: 97 07 98 08 <unknown>
6a94: 99 09 9a 0a and w25, w12, w26, asr #2
6a98: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6a9c: 05 48 0d 05 <unknown>
6aa0: 49 0e 05 4a eor w9, w18, w5, lsl #3
6aa4: 0f 05 4b 10 adr x15, #614560
6aa8: 05 4c 11 05 <unknown>
6aac: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6ab0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c02bc>
6ab4: 00 00 00 00 udf #0
0000000000006ab8 _lj_fff_restv.eh:
6ab8: 44 00 00 00 udf #68
6abc: 04 00 00 00 udf #4
6ac0: f8 ff ff ff <unknown>
6ac4: 08 00 00 00 udf #8
6ac8: 00 0e d0 01 <unknown>
6acc: 9e 01 9d 02 <unknown>
6ad0: 93 03 94 04 <unknown>
6ad4: 95 05 96 06 <unknown>
6ad8: 97 07 98 08 <unknown>
6adc: 99 09 9a 0a and w25, w12, w26, asr #2
6ae0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6ae4: 05 48 0d 05 <unknown>
6ae8: 49 0e 05 4a eor w9, w18, w5, lsl #3
6aec: 0f 05 4b 10 adr x15, #614560
6af0: 05 4c 11 05 <unknown>
6af4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6af8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0304>
6afc: 00 00 00 00 udf #0
0000000000006b00 _lj_fff_res1.eh:
6b00: 44 00 00 00 udf #68
6b04: 04 00 00 00 udf #4
6b08: f8 ff ff ff <unknown>
6b0c: 04 00 00 00 udf #4
6b10: 00 0e d0 01 <unknown>
6b14: 9e 01 9d 02 <unknown>
6b18: 93 03 94 04 <unknown>
6b1c: 95 05 96 06 <unknown>
6b20: 97 07 98 08 <unknown>
6b24: 99 09 9a 0a and w25, w12, w26, asr #2
6b28: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6b2c: 05 48 0d 05 <unknown>
6b30: 49 0e 05 4a eor w9, w18, w5, lsl #3
6b34: 0f 05 4b 10 adr x15, #614560
6b38: 05 4c 11 05 <unknown>
6b3c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6b40: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c034c>
6b44: 00 00 00 00 udf #0
0000000000006b48 _lj_fff_res.eh:
6b48: 44 00 00 00 udf #68
6b4c: 04 00 00 00 udf #4
6b50: f8 ff ff ff <unknown>
6b54: 50 00 00 00 udf #80
6b58: 00 0e d0 01 <unknown>
6b5c: 9e 01 9d 02 <unknown>
6b60: 93 03 94 04 <unknown>
6b64: 95 05 96 06 <unknown>
6b68: 97 07 98 08 <unknown>
6b6c: 99 09 9a 0a and w25, w12, w26, asr #2
6b70: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6b74: 05 48 0d 05 <unknown>
6b78: 49 0e 05 4a eor w9, w18, w5, lsl #3
6b7c: 0f 05 4b 10 adr x15, #614560
6b80: 05 4c 11 05 <unknown>
6b84: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6b88: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0394>
6b8c: 00 00 00 00 udf #0
0000000000006b90 _lj_ff_math_sqrt.eh:
6b90: 44 00 00 00 udf #68
6b94: 04 00 00 00 udf #4
6b98: f8 ff ff ff <unknown>
6b9c: 1c 00 00 00 udf #28
6ba0: 00 0e d0 01 <unknown>
6ba4: 9e 01 9d 02 <unknown>
6ba8: 93 03 94 04 <unknown>
6bac: 95 05 96 06 <unknown>
6bb0: 97 07 98 08 <unknown>
6bb4: 99 09 9a 0a and w25, w12, w26, asr #2
6bb8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6bbc: 05 48 0d 05 <unknown>
6bc0: 49 0e 05 4a eor w9, w18, w5, lsl #3
6bc4: 0f 05 4b 10 adr x15, #614560
6bc8: 05 4c 11 05 <unknown>
6bcc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6bd0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c03dc>
6bd4: 00 00 00 00 udf #0
0000000000006bd8 _lj_fff_resn.eh:
6bd8: 44 00 00 00 udf #68
6bdc: 04 00 00 00 udf #4
6be0: f8 ff ff ff <unknown>
6be4: 0c 00 00 00 udf #12
6be8: 00 0e d0 01 <unknown>
6bec: 9e 01 9d 02 <unknown>
6bf0: 93 03 94 04 <unknown>
6bf4: 95 05 96 06 <unknown>
6bf8: 97 07 98 08 <unknown>
6bfc: 99 09 9a 0a and w25, w12, w26, asr #2
6c00: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6c04: 05 48 0d 05 <unknown>
6c08: 49 0e 05 4a eor w9, w18, w5, lsl #3
6c0c: 0f 05 4b 10 adr x15, #614560
6c10: 05 4c 11 05 <unknown>
6c14: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6c18: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0424>
6c1c: 00 00 00 00 udf #0
0000000000006c20 _lj_ff_math_log.eh:
6c20: 44 00 00 00 udf #68
6c24: 04 00 00 00 udf #4
6c28: f8 ff ff ff <unknown>
6c2c: 20 00 00 00 udf #32
6c30: 00 0e d0 01 <unknown>
6c34: 9e 01 9d 02 <unknown>
6c38: 93 03 94 04 <unknown>
6c3c: 95 05 96 06 <unknown>
6c40: 97 07 98 08 <unknown>
6c44: 99 09 9a 0a and w25, w12, w26, asr #2
6c48: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6c4c: 05 48 0d 05 <unknown>
6c50: 49 0e 05 4a eor w9, w18, w5, lsl #3
6c54: 0f 05 4b 10 adr x15, #614560
6c58: 05 4c 11 05 <unknown>
6c5c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6c60: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c046c>
6c64: 00 00 00 00 udf #0
0000000000006c68 _lj_ff_math_log10.eh:
6c68: 44 00 00 00 udf #68
6c6c: 04 00 00 00 udf #4
6c70: f8 ff ff ff <unknown>
6c74: 20 00 00 00 udf #32
6c78: 00 0e d0 01 <unknown>
6c7c: 9e 01 9d 02 <unknown>
6c80: 93 03 94 04 <unknown>
6c84: 95 05 96 06 <unknown>
6c88: 97 07 98 08 <unknown>
6c8c: 99 09 9a 0a and w25, w12, w26, asr #2
6c90: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6c94: 05 48 0d 05 <unknown>
6c98: 49 0e 05 4a eor w9, w18, w5, lsl #3
6c9c: 0f 05 4b 10 adr x15, #614560
6ca0: 05 4c 11 05 <unknown>
6ca4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6ca8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c04b4>
6cac: 00 00 00 00 udf #0
0000000000006cb0 _lj_ff_math_exp.eh:
6cb0: 44 00 00 00 udf #68
6cb4: 04 00 00 00 udf #4
6cb8: f8 ff ff ff <unknown>
6cbc: 20 00 00 00 udf #32
6cc0: 00 0e d0 01 <unknown>
6cc4: 9e 01 9d 02 <unknown>
6cc8: 93 03 94 04 <unknown>
6ccc: 95 05 96 06 <unknown>
6cd0: 97 07 98 08 <unknown>
6cd4: 99 09 9a 0a and w25, w12, w26, asr #2
6cd8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6cdc: 05 48 0d 05 <unknown>
6ce0: 49 0e 05 4a eor w9, w18, w5, lsl #3
6ce4: 0f 05 4b 10 adr x15, #614560
6ce8: 05 4c 11 05 <unknown>
6cec: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6cf0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c04fc>
6cf4: 00 00 00 00 udf #0
0000000000006cf8 _lj_ff_math_sin.eh:
6cf8: 44 00 00 00 udf #68
6cfc: 04 00 00 00 udf #4
6d00: f8 ff ff ff <unknown>
6d04: 20 00 00 00 udf #32
6d08: 00 0e d0 01 <unknown>
6d0c: 9e 01 9d 02 <unknown>
6d10: 93 03 94 04 <unknown>
6d14: 95 05 96 06 <unknown>
6d18: 97 07 98 08 <unknown>
6d1c: 99 09 9a 0a and w25, w12, w26, asr #2
6d20: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6d24: 05 48 0d 05 <unknown>
6d28: 49 0e 05 4a eor w9, w18, w5, lsl #3
6d2c: 0f 05 4b 10 adr x15, #614560
6d30: 05 4c 11 05 <unknown>
6d34: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6d38: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0544>
6d3c: 00 00 00 00 udf #0
0000000000006d40 _lj_ff_math_cos.eh:
6d40: 44 00 00 00 udf #68
6d44: 04 00 00 00 udf #4
6d48: f8 ff ff ff <unknown>
6d4c: 20 00 00 00 udf #32
6d50: 00 0e d0 01 <unknown>
6d54: 9e 01 9d 02 <unknown>
6d58: 93 03 94 04 <unknown>
6d5c: 95 05 96 06 <unknown>
6d60: 97 07 98 08 <unknown>
6d64: 99 09 9a 0a and w25, w12, w26, asr #2
6d68: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6d6c: 05 48 0d 05 <unknown>
6d70: 49 0e 05 4a eor w9, w18, w5, lsl #3
6d74: 0f 05 4b 10 adr x15, #614560
6d78: 05 4c 11 05 <unknown>
6d7c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6d80: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c058c>
6d84: 00 00 00 00 udf #0
0000000000006d88 _lj_ff_math_tan.eh:
6d88: 44 00 00 00 udf #68
6d8c: 04 00 00 00 udf #4
6d90: f8 ff ff ff <unknown>
6d94: 20 00 00 00 udf #32
6d98: 00 0e d0 01 <unknown>
6d9c: 9e 01 9d 02 <unknown>
6da0: 93 03 94 04 <unknown>
6da4: 95 05 96 06 <unknown>
6da8: 97 07 98 08 <unknown>
6dac: 99 09 9a 0a and w25, w12, w26, asr #2
6db0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6db4: 05 48 0d 05 <unknown>
6db8: 49 0e 05 4a eor w9, w18, w5, lsl #3
6dbc: 0f 05 4b 10 adr x15, #614560
6dc0: 05 4c 11 05 <unknown>
6dc4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6dc8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c05d4>
6dcc: 00 00 00 00 udf #0
0000000000006dd0 _lj_ff_math_asin.eh:
6dd0: 44 00 00 00 udf #68
6dd4: 04 00 00 00 udf #4
6dd8: f8 ff ff ff <unknown>
6ddc: 20 00 00 00 udf #32
6de0: 00 0e d0 01 <unknown>
6de4: 9e 01 9d 02 <unknown>
6de8: 93 03 94 04 <unknown>
6dec: 95 05 96 06 <unknown>
6df0: 97 07 98 08 <unknown>
6df4: 99 09 9a 0a and w25, w12, w26, asr #2
6df8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6dfc: 05 48 0d 05 <unknown>
6e00: 49 0e 05 4a eor w9, w18, w5, lsl #3
6e04: 0f 05 4b 10 adr x15, #614560
6e08: 05 4c 11 05 <unknown>
6e0c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6e10: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c061c>
6e14: 00 00 00 00 udf #0
0000000000006e18 _lj_ff_math_acos.eh:
6e18: 44 00 00 00 udf #68
6e1c: 04 00 00 00 udf #4
6e20: f8 ff ff ff <unknown>
6e24: 20 00 00 00 udf #32
6e28: 00 0e d0 01 <unknown>
6e2c: 9e 01 9d 02 <unknown>
6e30: 93 03 94 04 <unknown>
6e34: 95 05 96 06 <unknown>
6e38: 97 07 98 08 <unknown>
6e3c: 99 09 9a 0a and w25, w12, w26, asr #2
6e40: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6e44: 05 48 0d 05 <unknown>
6e48: 49 0e 05 4a eor w9, w18, w5, lsl #3
6e4c: 0f 05 4b 10 adr x15, #614560
6e50: 05 4c 11 05 <unknown>
6e54: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6e58: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0664>
6e5c: 00 00 00 00 udf #0
0000000000006e60 _lj_ff_math_atan.eh:
6e60: 44 00 00 00 udf #68
6e64: 04 00 00 00 udf #4
6e68: f8 ff ff ff <unknown>
6e6c: 20 00 00 00 udf #32
6e70: 00 0e d0 01 <unknown>
6e74: 9e 01 9d 02 <unknown>
6e78: 93 03 94 04 <unknown>
6e7c: 95 05 96 06 <unknown>
6e80: 97 07 98 08 <unknown>
6e84: 99 09 9a 0a and w25, w12, w26, asr #2
6e88: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6e8c: 05 48 0d 05 <unknown>
6e90: 49 0e 05 4a eor w9, w18, w5, lsl #3
6e94: 0f 05 4b 10 adr x15, #614560
6e98: 05 4c 11 05 <unknown>
6e9c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6ea0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c06ac>
6ea4: 00 00 00 00 udf #0
0000000000006ea8 _lj_ff_math_sinh.eh:
6ea8: 44 00 00 00 udf #68
6eac: 04 00 00 00 udf #4
6eb0: f8 ff ff ff <unknown>
6eb4: 20 00 00 00 udf #32
6eb8: 00 0e d0 01 <unknown>
6ebc: 9e 01 9d 02 <unknown>
6ec0: 93 03 94 04 <unknown>
6ec4: 95 05 96 06 <unknown>
6ec8: 97 07 98 08 <unknown>
6ecc: 99 09 9a 0a and w25, w12, w26, asr #2
6ed0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6ed4: 05 48 0d 05 <unknown>
6ed8: 49 0e 05 4a eor w9, w18, w5, lsl #3
6edc: 0f 05 4b 10 adr x15, #614560
6ee0: 05 4c 11 05 <unknown>
6ee4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6ee8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c06f4>
6eec: 00 00 00 00 udf #0
0000000000006ef0 _lj_ff_math_cosh.eh:
6ef0: 44 00 00 00 udf #68
6ef4: 04 00 00 00 udf #4
6ef8: f8 ff ff ff <unknown>
6efc: 20 00 00 00 udf #32
6f00: 00 0e d0 01 <unknown>
6f04: 9e 01 9d 02 <unknown>
6f08: 93 03 94 04 <unknown>
6f0c: 95 05 96 06 <unknown>
6f10: 97 07 98 08 <unknown>
6f14: 99 09 9a 0a and w25, w12, w26, asr #2
6f18: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6f1c: 05 48 0d 05 <unknown>
6f20: 49 0e 05 4a eor w9, w18, w5, lsl #3
6f24: 0f 05 4b 10 adr x15, #614560
6f28: 05 4c 11 05 <unknown>
6f2c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6f30: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c073c>
6f34: 00 00 00 00 udf #0
0000000000006f38 _lj_ff_math_tanh.eh:
6f38: 44 00 00 00 udf #68
6f3c: 04 00 00 00 udf #4
6f40: f8 ff ff ff <unknown>
6f44: 20 00 00 00 udf #32
6f48: 00 0e d0 01 <unknown>
6f4c: 9e 01 9d 02 <unknown>
6f50: 93 03 94 04 <unknown>
6f54: 95 05 96 06 <unknown>
6f58: 97 07 98 08 <unknown>
6f5c: 99 09 9a 0a and w25, w12, w26, asr #2
6f60: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6f64: 05 48 0d 05 <unknown>
6f68: 49 0e 05 4a eor w9, w18, w5, lsl #3
6f6c: 0f 05 4b 10 adr x15, #614560
6f70: 05 4c 11 05 <unknown>
6f74: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6f78: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0784>
6f7c: 00 00 00 00 udf #0
0000000000006f80 _lj_ff_math_pow.eh:
6f80: 44 00 00 00 udf #68
6f84: 04 00 00 00 udf #4
6f88: f8 ff ff ff <unknown>
6f8c: 28 00 00 00 udf #40
6f90: 00 0e d0 01 <unknown>
6f94: 9e 01 9d 02 <unknown>
6f98: 93 03 94 04 <unknown>
6f9c: 95 05 96 06 <unknown>
6fa0: 97 07 98 08 <unknown>
6fa4: 99 09 9a 0a and w25, w12, w26, asr #2
6fa8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6fac: 05 48 0d 05 <unknown>
6fb0: 49 0e 05 4a eor w9, w18, w5, lsl #3
6fb4: 0f 05 4b 10 adr x15, #614560
6fb8: 05 4c 11 05 <unknown>
6fbc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
6fc0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c07cc>
6fc4: 00 00 00 00 udf #0
0000000000006fc8 _lj_ff_math_atan2.eh:
6fc8: 44 00 00 00 udf #68
6fcc: 04 00 00 00 udf #4
6fd0: f8 ff ff ff <unknown>
6fd4: 28 00 00 00 udf #40
6fd8: 00 0e d0 01 <unknown>
6fdc: 9e 01 9d 02 <unknown>
6fe0: 93 03 94 04 <unknown>
6fe4: 95 05 96 06 <unknown>
6fe8: 97 07 98 08 <unknown>
6fec: 99 09 9a 0a and w25, w12, w26, asr #2
6ff0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
6ff4: 05 48 0d 05 <unknown>
6ff8: 49 0e 05 4a eor w9, w18, w5, lsl #3
6ffc: 0f 05 4b 10 adr x15, #614560
7000: 05 4c 11 05 <unknown>
7004: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7008: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0814>
700c: 00 00 00 00 udf #0
0000000000007010 _lj_ff_math_fmod.eh:
7010: 44 00 00 00 udf #68
7014: 04 00 00 00 udf #4
7018: f8 ff ff ff <unknown>
701c: 28 00 00 00 udf #40
7020: 00 0e d0 01 <unknown>
7024: 9e 01 9d 02 <unknown>
7028: 93 03 94 04 <unknown>
702c: 95 05 96 06 <unknown>
7030: 97 07 98 08 <unknown>
7034: 99 09 9a 0a and w25, w12, w26, asr #2
7038: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
703c: 05 48 0d 05 <unknown>
7040: 49 0e 05 4a eor w9, w18, w5, lsl #3
7044: 0f 05 4b 10 adr x15, #614560
7048: 05 4c 11 05 <unknown>
704c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7050: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c085c>
7054: 00 00 00 00 udf #0
0000000000007058 _lj_ff_math_ldexp.eh:
7058: 44 00 00 00 udf #68
705c: 04 00 00 00 udf #4
7060: f8 ff ff ff <unknown>
7064: 2c 00 00 00 udf #44
7068: 00 0e d0 01 <unknown>
706c: 9e 01 9d 02 <unknown>
7070: 93 03 94 04 <unknown>
7074: 95 05 96 06 <unknown>
7078: 97 07 98 08 <unknown>
707c: 99 09 9a 0a and w25, w12, w26, asr #2
7080: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7084: 05 48 0d 05 <unknown>
7088: 49 0e 05 4a eor w9, w18, w5, lsl #3
708c: 0f 05 4b 10 adr x15, #614560
7090: 05 4c 11 05 <unknown>
7094: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7098: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c08a4>
709c: 00 00 00 00 udf #0
00000000000070a0 _lj_ff_math_frexp.eh:
70a0: 44 00 00 00 udf #68
70a4: 04 00 00 00 udf #4
70a8: f8 ff ff ff <unknown>
70ac: 3c 00 00 00 udf #60
70b0: 00 0e d0 01 <unknown>
70b4: 9e 01 9d 02 <unknown>
70b8: 93 03 94 04 <unknown>
70bc: 95 05 96 06 <unknown>
70c0: 97 07 98 08 <unknown>
70c4: 99 09 9a 0a and w25, w12, w26, asr #2
70c8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
70cc: 05 48 0d 05 <unknown>
70d0: 49 0e 05 4a eor w9, w18, w5, lsl #3
70d4: 0f 05 4b 10 adr x15, #614560
70d8: 05 4c 11 05 <unknown>
70dc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
70e0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c08ec>
70e4: 00 00 00 00 udf #0
00000000000070e8 _lj_ff_math_modf.eh:
70e8: 44 00 00 00 udf #68
70ec: 04 00 00 00 udf #4
70f0: f8 ff ff ff <unknown>
70f4: 30 00 00 00 udf #48
70f8: 00 0e d0 01 <unknown>
70fc: 9e 01 9d 02 <unknown>
7100: 93 03 94 04 <unknown>
7104: 95 05 96 06 <unknown>
7108: 97 07 98 08 <unknown>
710c: 99 09 9a 0a and w25, w12, w26, asr #2
7110: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7114: 05 48 0d 05 <unknown>
7118: 49 0e 05 4a eor w9, w18, w5, lsl #3
711c: 0f 05 4b 10 adr x15, #614560
7120: 05 4c 11 05 <unknown>
7124: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7128: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0934>
712c: 00 00 00 00 udf #0
0000000000007130 _lj_ff_math_min.eh:
7130: 44 00 00 00 udf #68
7134: 04 00 00 00 udf #4
7138: f8 ff ff ff <unknown>
713c: 8c 00 00 00 udf #140
7140: 00 0e d0 01 <unknown>
7144: 9e 01 9d 02 <unknown>
7148: 93 03 94 04 <unknown>
714c: 95 05 96 06 <unknown>
7150: 97 07 98 08 <unknown>
7154: 99 09 9a 0a and w25, w12, w26, asr #2
7158: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
715c: 05 48 0d 05 <unknown>
7160: 49 0e 05 4a eor w9, w18, w5, lsl #3
7164: 0f 05 4b 10 adr x15, #614560
7168: 05 4c 11 05 <unknown>
716c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7170: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c097c>
7174: 00 00 00 00 udf #0
0000000000007178 _lj_ff_math_max.eh:
7178: 44 00 00 00 udf #68
717c: 04 00 00 00 udf #4
7180: f8 ff ff ff <unknown>
7184: 8c 00 00 00 udf #140
7188: 00 0e d0 01 <unknown>
718c: 9e 01 9d 02 <unknown>
7190: 93 03 94 04 <unknown>
7194: 95 05 96 06 <unknown>
7198: 97 07 98 08 <unknown>
719c: 99 09 9a 0a and w25, w12, w26, asr #2
71a0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
71a4: 05 48 0d 05 <unknown>
71a8: 49 0e 05 4a eor w9, w18, w5, lsl #3
71ac: 0f 05 4b 10 adr x15, #614560
71b0: 05 4c 11 05 <unknown>
71b4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
71b8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c09c4>
71bc: 00 00 00 00 udf #0
00000000000071c0 _lj_ff_string_byte.eh:
71c0: 44 00 00 00 udf #68
71c4: 04 00 00 00 udf #4
71c8: f8 ff ff ff <unknown>
71cc: 34 00 00 00 udf #52
71d0: 00 0e d0 01 <unknown>
71d4: 9e 01 9d 02 <unknown>
71d8: 93 03 94 04 <unknown>
71dc: 95 05 96 06 <unknown>
71e0: 97 07 98 08 <unknown>
71e4: 99 09 9a 0a and w25, w12, w26, asr #2
71e8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
71ec: 05 48 0d 05 <unknown>
71f0: 49 0e 05 4a eor w9, w18, w5, lsl #3
71f4: 0f 05 4b 10 adr x15, #614560
71f8: 05 4c 11 05 <unknown>
71fc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7200: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0a0c>
7204: 00 00 00 00 udf #0
0000000000007208 _lj_ff_string_char.eh:
7208: 44 00 00 00 udf #68
720c: 04 00 00 00 udf #4
7210: f8 ff ff ff <unknown>
7214: 30 00 00 00 udf #48
7218: 00 0e d0 01 <unknown>
721c: 9e 01 9d 02 <unknown>
7220: 93 03 94 04 <unknown>
7224: 95 05 96 06 <unknown>
7228: 97 07 98 08 <unknown>
722c: 99 09 9a 0a and w25, w12, w26, asr #2
7230: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7234: 05 48 0d 05 <unknown>
7238: 49 0e 05 4a eor w9, w18, w5, lsl #3
723c: 0f 05 4b 10 adr x15, #614560
7240: 05 4c 11 05 <unknown>
7244: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7248: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0a54>
724c: 00 00 00 00 udf #0
0000000000007250 _lj_fff_newstr.eh:
7250: 44 00 00 00 udf #68
7254: 04 00 00 00 udf #4
7258: f8 ff ff ff <unknown>
725c: 10 00 00 00 udf #16
7260: 00 0e d0 01 <unknown>
7264: 9e 01 9d 02 <unknown>
7268: 93 03 94 04 <unknown>
726c: 95 05 96 06 <unknown>
7270: 97 07 98 08 <unknown>
7274: 99 09 9a 0a and w25, w12, w26, asr #2
7278: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
727c: 05 48 0d 05 <unknown>
7280: 49 0e 05 4a eor w9, w18, w5, lsl #3
7284: 0f 05 4b 10 adr x15, #614560
7288: 05 4c 11 05 <unknown>
728c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7290: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0a9c>
7294: 00 00 00 00 udf #0
0000000000007298 _lj_fff_resstr.eh:
7298: 44 00 00 00 udf #68
729c: 04 00 00 00 udf #4
72a0: f8 ff ff ff <unknown>
72a4: 10 00 00 00 udf #16
72a8: 00 0e d0 01 <unknown>
72ac: 9e 01 9d 02 <unknown>
72b0: 93 03 94 04 <unknown>
72b4: 95 05 96 06 <unknown>
72b8: 97 07 98 08 <unknown>
72bc: 99 09 9a 0a and w25, w12, w26, asr #2
72c0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
72c4: 05 48 0d 05 <unknown>
72c8: 49 0e 05 4a eor w9, w18, w5, lsl #3
72cc: 0f 05 4b 10 adr x15, #614560
72d0: 05 4c 11 05 <unknown>
72d4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
72d8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0ae4>
72dc: 00 00 00 00 udf #0
00000000000072e0 _lj_ff_string_sub.eh:
72e0: 44 00 00 00 udf #68
72e4: 04 00 00 00 udf #4
72e8: f8 ff ff ff <unknown>
72ec: ac 00 00 00 udf #172
72f0: 00 0e d0 01 <unknown>
72f4: 9e 01 9d 02 <unknown>
72f8: 93 03 94 04 <unknown>
72fc: 95 05 96 06 <unknown>
7300: 97 07 98 08 <unknown>
7304: 99 09 9a 0a and w25, w12, w26, asr #2
7308: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
730c: 05 48 0d 05 <unknown>
7310: 49 0e 05 4a eor w9, w18, w5, lsl #3
7314: 0f 05 4b 10 adr x15, #614560
7318: 05 4c 11 05 <unknown>
731c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7320: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0b2c>
7324: 00 00 00 00 udf #0
0000000000007328 _lj_ff_string_reverse.eh:
7328: 44 00 00 00 udf #68
732c: 04 00 00 00 udf #4
7330: f8 ff ff ff <unknown>
7334: 4c 00 00 00 udf #76
7338: 00 0e d0 01 <unknown>
733c: 9e 01 9d 02 <unknown>
7340: 93 03 94 04 <unknown>
7344: 95 05 96 06 <unknown>
7348: 97 07 98 08 <unknown>
734c: 99 09 9a 0a and w25, w12, w26, asr #2
7350: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7354: 05 48 0d 05 <unknown>
7358: 49 0e 05 4a eor w9, w18, w5, lsl #3
735c: 0f 05 4b 10 adr x15, #614560
7360: 05 4c 11 05 <unknown>
7364: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7368: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0b74>
736c: 00 00 00 00 udf #0
0000000000007370 _lj_ff_string_lower.eh:
7370: 44 00 00 00 udf #68
7374: 04 00 00 00 udf #4
7378: f8 ff ff ff <unknown>
737c: 4c 00 00 00 udf #76
7380: 00 0e d0 01 <unknown>
7384: 9e 01 9d 02 <unknown>
7388: 93 03 94 04 <unknown>
738c: 95 05 96 06 <unknown>
7390: 97 07 98 08 <unknown>
7394: 99 09 9a 0a and w25, w12, w26, asr #2
7398: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
739c: 05 48 0d 05 <unknown>
73a0: 49 0e 05 4a eor w9, w18, w5, lsl #3
73a4: 0f 05 4b 10 adr x15, #614560
73a8: 05 4c 11 05 <unknown>
73ac: 4d 12 05 4e tbx.16b v13, { v18 }, v5
73b0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0bbc>
73b4: 00 00 00 00 udf #0
00000000000073b8 _lj_ff_string_upper.eh:
73b8: 44 00 00 00 udf #68
73bc: 04 00 00 00 udf #4
73c0: f8 ff ff ff <unknown>
73c4: 4c 00 00 00 udf #76
73c8: 00 0e d0 01 <unknown>
73cc: 9e 01 9d 02 <unknown>
73d0: 93 03 94 04 <unknown>
73d4: 95 05 96 06 <unknown>
73d8: 97 07 98 08 <unknown>
73dc: 99 09 9a 0a and w25, w12, w26, asr #2
73e0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
73e4: 05 48 0d 05 <unknown>
73e8: 49 0e 05 4a eor w9, w18, w5, lsl #3
73ec: 0f 05 4b 10 adr x15, #614560
73f0: 05 4c 11 05 <unknown>
73f4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
73f8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0c04>
73fc: 00 00 00 00 udf #0
0000000000007400 _lj_vm_tobit_fb.eh:
7400: 44 00 00 00 udf #68
7404: 04 00 00 00 udf #4
7408: f8 ff ff ff <unknown>
740c: 38 00 00 00 udf #56
7410: 00 0e d0 01 <unknown>
7414: 9e 01 9d 02 <unknown>
7418: 93 03 94 04 <unknown>
741c: 95 05 96 06 <unknown>
7420: 97 07 98 08 <unknown>
7424: 99 09 9a 0a and w25, w12, w26, asr #2
7428: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
742c: 05 48 0d 05 <unknown>
7430: 49 0e 05 4a eor w9, w18, w5, lsl #3
7434: 0f 05 4b 10 adr x15, #614560
7438: 05 4c 11 05 <unknown>
743c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7440: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0c4c>
7444: 00 00 00 00 udf #0
0000000000007448 _lj_ff_bit_band.eh:
7448: 44 00 00 00 udf #68
744c: 04 00 00 00 udf #4
7450: f8 ff ff ff <unknown>
7454: 44 00 00 00 udf #68
7458: 00 0e d0 01 <unknown>
745c: 9e 01 9d 02 <unknown>
7460: 93 03 94 04 <unknown>
7464: 95 05 96 06 <unknown>
7468: 97 07 98 08 <unknown>
746c: 99 09 9a 0a and w25, w12, w26, asr #2
7470: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7474: 05 48 0d 05 <unknown>
7478: 49 0e 05 4a eor w9, w18, w5, lsl #3
747c: 0f 05 4b 10 adr x15, #614560
7480: 05 4c 11 05 <unknown>
7484: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7488: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0c94>
748c: 00 00 00 00 udf #0
0000000000007490 _lj_ff_bit_bor.eh:
7490: 44 00 00 00 udf #68
7494: 04 00 00 00 udf #4
7498: f8 ff ff ff <unknown>
749c: 44 00 00 00 udf #68
74a0: 00 0e d0 01 <unknown>
74a4: 9e 01 9d 02 <unknown>
74a8: 93 03 94 04 <unknown>
74ac: 95 05 96 06 <unknown>
74b0: 97 07 98 08 <unknown>
74b4: 99 09 9a 0a and w25, w12, w26, asr #2
74b8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
74bc: 05 48 0d 05 <unknown>
74c0: 49 0e 05 4a eor w9, w18, w5, lsl #3
74c4: 0f 05 4b 10 adr x15, #614560
74c8: 05 4c 11 05 <unknown>
74cc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
74d0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0cdc>
74d4: 00 00 00 00 udf #0
00000000000074d8 _lj_ff_bit_bxor.eh:
74d8: 44 00 00 00 udf #68
74dc: 04 00 00 00 udf #4
74e0: f8 ff ff ff <unknown>
74e4: 44 00 00 00 udf #68
74e8: 00 0e d0 01 <unknown>
74ec: 9e 01 9d 02 <unknown>
74f0: 93 03 94 04 <unknown>
74f4: 95 05 96 06 <unknown>
74f8: 97 07 98 08 <unknown>
74fc: 99 09 9a 0a and w25, w12, w26, asr #2
7500: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7504: 05 48 0d 05 <unknown>
7508: 49 0e 05 4a eor w9, w18, w5, lsl #3
750c: 0f 05 4b 10 adr x15, #614560
7510: 05 4c 11 05 <unknown>
7514: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7518: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0d24>
751c: 00 00 00 00 udf #0
0000000000007520 _lj_ff_bit_tobit.eh:
7520: 44 00 00 00 udf #68
7524: 04 00 00 00 udf #4
7528: f8 ff ff ff <unknown>
752c: 24 00 00 00 udf #36
7530: 00 0e d0 01 <unknown>
7534: 9e 01 9d 02 <unknown>
7538: 93 03 94 04 <unknown>
753c: 95 05 96 06 <unknown>
7540: 97 07 98 08 <unknown>
7544: 99 09 9a 0a and w25, w12, w26, asr #2
7548: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
754c: 05 48 0d 05 <unknown>
7550: 49 0e 05 4a eor w9, w18, w5, lsl #3
7554: 0f 05 4b 10 adr x15, #614560
7558: 05 4c 11 05 <unknown>
755c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7560: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0d6c>
7564: 00 00 00 00 udf #0
0000000000007568 _lj_ff_bit_bswap.eh:
7568: 44 00 00 00 udf #68
756c: 04 00 00 00 udf #4
7570: f8 ff ff ff <unknown>
7574: 24 00 00 00 udf #36
7578: 00 0e d0 01 <unknown>
757c: 9e 01 9d 02 <unknown>
7580: 93 03 94 04 <unknown>
7584: 95 05 96 06 <unknown>
7588: 97 07 98 08 <unknown>
758c: 99 09 9a 0a and w25, w12, w26, asr #2
7590: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7594: 05 48 0d 05 <unknown>
7598: 49 0e 05 4a eor w9, w18, w5, lsl #3
759c: 0f 05 4b 10 adr x15, #614560
75a0: 05 4c 11 05 <unknown>
75a4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
75a8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0db4>
75ac: 00 00 00 00 udf #0
00000000000075b0 _lj_ff_bit_bnot.eh:
75b0: 44 00 00 00 udf #68
75b4: 04 00 00 00 udf #4
75b8: f8 ff ff ff <unknown>
75bc: 24 00 00 00 udf #36
75c0: 00 0e d0 01 <unknown>
75c4: 9e 01 9d 02 <unknown>
75c8: 93 03 94 04 <unknown>
75cc: 95 05 96 06 <unknown>
75d0: 97 07 98 08 <unknown>
75d4: 99 09 9a 0a and w25, w12, w26, asr #2
75d8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
75dc: 05 48 0d 05 <unknown>
75e0: 49 0e 05 4a eor w9, w18, w5, lsl #3
75e4: 0f 05 4b 10 adr x15, #614560
75e8: 05 4c 11 05 <unknown>
75ec: 4d 12 05 4e tbx.16b v13, { v18 }, v5
75f0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0dfc>
75f4: 00 00 00 00 udf #0
00000000000075f8 _lj_ff_bit_lshift.eh:
75f8: 44 00 00 00 udf #68
75fc: 04 00 00 00 udf #4
7600: f8 ff ff ff <unknown>
7604: 38 00 00 00 udf #56
7608: 00 0e d0 01 <unknown>
760c: 9e 01 9d 02 <unknown>
7610: 93 03 94 04 <unknown>
7614: 95 05 96 06 <unknown>
7618: 97 07 98 08 <unknown>
761c: 99 09 9a 0a and w25, w12, w26, asr #2
7620: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7624: 05 48 0d 05 <unknown>
7628: 49 0e 05 4a eor w9, w18, w5, lsl #3
762c: 0f 05 4b 10 adr x15, #614560
7630: 05 4c 11 05 <unknown>
7634: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7638: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0e44>
763c: 00 00 00 00 udf #0
0000000000007640 _lj_ff_bit_rshift.eh:
7640: 44 00 00 00 udf #68
7644: 04 00 00 00 udf #4
7648: f8 ff ff ff <unknown>
764c: 38 00 00 00 udf #56
7650: 00 0e d0 01 <unknown>
7654: 9e 01 9d 02 <unknown>
7658: 93 03 94 04 <unknown>
765c: 95 05 96 06 <unknown>
7660: 97 07 98 08 <unknown>
7664: 99 09 9a 0a and w25, w12, w26, asr #2
7668: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
766c: 05 48 0d 05 <unknown>
7670: 49 0e 05 4a eor w9, w18, w5, lsl #3
7674: 0f 05 4b 10 adr x15, #614560
7678: 05 4c 11 05 <unknown>
767c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7680: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0e8c>
7684: 00 00 00 00 udf #0
0000000000007688 _lj_ff_bit_arshift.eh:
7688: 44 00 00 00 udf #68
768c: 04 00 00 00 udf #4
7690: f8 ff ff ff <unknown>
7694: 38 00 00 00 udf #56
7698: 00 0e d0 01 <unknown>
769c: 9e 01 9d 02 <unknown>
76a0: 93 03 94 04 <unknown>
76a4: 95 05 96 06 <unknown>
76a8: 97 07 98 08 <unknown>
76ac: 99 09 9a 0a and w25, w12, w26, asr #2
76b0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
76b4: 05 48 0d 05 <unknown>
76b8: 49 0e 05 4a eor w9, w18, w5, lsl #3
76bc: 0f 05 4b 10 adr x15, #614560
76c0: 05 4c 11 05 <unknown>
76c4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
76c8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0ed4>
76cc: 00 00 00 00 udf #0
00000000000076d0 _lj_ff_bit_rol.eh:
76d0: 44 00 00 00 udf #68
76d4: 04 00 00 00 udf #4
76d8: f8 ff ff ff <unknown>
76dc: 38 00 00 00 udf #56
76e0: 00 0e d0 01 <unknown>
76e4: 9e 01 9d 02 <unknown>
76e8: 93 03 94 04 <unknown>
76ec: 95 05 96 06 <unknown>
76f0: 97 07 98 08 <unknown>
76f4: 99 09 9a 0a and w25, w12, w26, asr #2
76f8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
76fc: 05 48 0d 05 <unknown>
7700: 49 0e 05 4a eor w9, w18, w5, lsl #3
7704: 0f 05 4b 10 adr x15, #614560
7708: 05 4c 11 05 <unknown>
770c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7710: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0f1c>
7714: 00 00 00 00 udf #0
0000000000007718 _lj_ff_bit_ror.eh:
7718: 44 00 00 00 udf #68
771c: 04 00 00 00 udf #4
7720: f8 ff ff ff <unknown>
7724: 38 00 00 00 udf #56
7728: 00 0e d0 01 <unknown>
772c: 9e 01 9d 02 <unknown>
7730: 93 03 94 04 <unknown>
7734: 95 05 96 06 <unknown>
7738: 97 07 98 08 <unknown>
773c: 99 09 9a 0a and w25, w12, w26, asr #2
7740: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7744: 05 48 0d 05 <unknown>
7748: 49 0e 05 4a eor w9, w18, w5, lsl #3
774c: 0f 05 4b 10 adr x15, #614560
7750: 05 4c 11 05 <unknown>
7754: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7758: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0f64>
775c: 00 00 00 00 udf #0
0000000000007760 _lj_fff_fallback.eh:
7760: 44 00 00 00 udf #68
7764: 04 00 00 00 udf #4
7768: f8 ff ff ff <unknown>
776c: 74 00 00 00 udf #116
7770: 00 0e d0 01 <unknown>
7774: 9e 01 9d 02 <unknown>
7778: 93 03 94 04 <unknown>
777c: 95 05 96 06 <unknown>
7780: 97 07 98 08 <unknown>
7784: 99 09 9a 0a and w25, w12, w26, asr #2
7788: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
778c: 05 48 0d 05 <unknown>
7790: 49 0e 05 4a eor w9, w18, w5, lsl #3
7794: 0f 05 4b 10 adr x15, #614560
7798: 05 4c 11 05 <unknown>
779c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
77a0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0fac>
77a4: 00 00 00 00 udf #0
00000000000077a8 _lj_vm_call_tail.eh:
77a8: 44 00 00 00 udf #68
77ac: 04 00 00 00 udf #4
77b0: f8 ff ff ff <unknown>
77b4: 34 00 00 00 udf #52
77b8: 00 0e d0 01 <unknown>
77bc: 9e 01 9d 02 <unknown>
77c0: 93 03 94 04 <unknown>
77c4: 95 05 96 06 <unknown>
77c8: 97 07 98 08 <unknown>
77cc: 99 09 9a 0a and w25, w12, w26, asr #2
77d0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
77d4: 05 48 0d 05 <unknown>
77d8: 49 0e 05 4a eor w9, w18, w5, lsl #3
77dc: 0f 05 4b 10 adr x15, #614560
77e0: 05 4c 11 05 <unknown>
77e4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
77e8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c0ff4>
77ec: 00 00 00 00 udf #0
00000000000077f0 _lj_fff_gcstep.eh:
77f0: 44 00 00 00 udf #68
77f4: 04 00 00 00 udf #4
77f8: f8 ff ff ff <unknown>
77fc: 30 00 00 00 udf #48
7800: 00 0e d0 01 <unknown>
7804: 9e 01 9d 02 <unknown>
7808: 93 03 94 04 <unknown>
780c: 95 05 96 06 <unknown>
7810: 97 07 98 08 <unknown>
7814: 99 09 9a 0a and w25, w12, w26, asr #2
7818: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
781c: 05 48 0d 05 <unknown>
7820: 49 0e 05 4a eor w9, w18, w5, lsl #3
7824: 0f 05 4b 10 adr x15, #614560
7828: 05 4c 11 05 <unknown>
782c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7830: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c103c>
7834: 00 00 00 00 udf #0
0000000000007838 _lj_vm_record.eh:
7838: 44 00 00 00 udf #68
783c: 04 00 00 00 udf #4
7840: f8 ff ff ff <unknown>
7844: 2c 00 00 00 udf #44
7848: 00 0e d0 01 <unknown>
784c: 9e 01 9d 02 <unknown>
7850: 93 03 94 04 <unknown>
7854: 95 05 96 06 <unknown>
7858: 97 07 98 08 <unknown>
785c: 99 09 9a 0a and w25, w12, w26, asr #2
7860: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7864: 05 48 0d 05 <unknown>
7868: 49 0e 05 4a eor w9, w18, w5, lsl #3
786c: 0f 05 4b 10 adr x15, #614560
7870: 05 4c 11 05 <unknown>
7874: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7878: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c1084>
787c: 00 00 00 00 udf #0
0000000000007880 _lj_vm_rethook.eh:
7880: 44 00 00 00 udf #68
7884: 04 00 00 00 udf #4
7888: f8 ff ff ff <unknown>
788c: 10 00 00 00 udf #16
7890: 00 0e d0 01 <unknown>
7894: 9e 01 9d 02 <unknown>
7898: 93 03 94 04 <unknown>
789c: 95 05 96 06 <unknown>
78a0: 97 07 98 08 <unknown>
78a4: 99 09 9a 0a and w25, w12, w26, asr #2
78a8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
78ac: 05 48 0d 05 <unknown>
78b0: 49 0e 05 4a eor w9, w18, w5, lsl #3
78b4: 0f 05 4b 10 adr x15, #614560
78b8: 05 4c 11 05 <unknown>
78bc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
78c0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c10cc>
78c4: 00 00 00 00 udf #0
00000000000078c8 _lj_vm_inshook.eh:
78c8: 44 00 00 00 udf #68
78cc: 04 00 00 00 udf #4
78d0: f8 ff ff ff <unknown>
78d4: 50 00 00 00 udf #80
78d8: 00 0e d0 01 <unknown>
78dc: 9e 01 9d 02 <unknown>
78e0: 93 03 94 04 <unknown>
78e4: 95 05 96 06 <unknown>
78e8: 97 07 98 08 <unknown>
78ec: 99 09 9a 0a and w25, w12, w26, asr #2
78f0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
78f4: 05 48 0d 05 <unknown>
78f8: 49 0e 05 4a eor w9, w18, w5, lsl #3
78fc: 0f 05 4b 10 adr x15, #614560
7900: 05 4c 11 05 <unknown>
7904: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7908: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c1114>
790c: 00 00 00 00 udf #0
0000000000007910 _lj_cont_hook.eh:
7910: 44 00 00 00 udf #68
7914: 04 00 00 00 udf #4
7918: f8 ff ff ff <unknown>
791c: 10 00 00 00 udf #16
7920: 00 0e d0 01 <unknown>
7924: 9e 01 9d 02 <unknown>
7928: 93 03 94 04 <unknown>
792c: 95 05 96 06 <unknown>
7930: 97 07 98 08 <unknown>
7934: 99 09 9a 0a and w25, w12, w26, asr #2
7938: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
793c: 05 48 0d 05 <unknown>
7940: 49 0e 05 4a eor w9, w18, w5, lsl #3
7944: 0f 05 4b 10 adr x15, #614560
7948: 05 4c 11 05 <unknown>
794c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7950: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c115c>
7954: 00 00 00 00 udf #0
0000000000007958 _lj_vm_hotloop.eh:
7958: 44 00 00 00 udf #68
795c: 04 00 00 00 udf #4
7960: f8 ff ff ff <unknown>
7964: 34 00 00 00 udf #52
7968: 00 0e d0 01 <unknown>
796c: 9e 01 9d 02 <unknown>
7970: 93 03 94 04 <unknown>
7974: 95 05 96 06 <unknown>
7978: 97 07 98 08 <unknown>
797c: 99 09 9a 0a and w25, w12, w26, asr #2
7980: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7984: 05 48 0d 05 <unknown>
7988: 49 0e 05 4a eor w9, w18, w5, lsl #3
798c: 0f 05 4b 10 adr x15, #614560
7990: 05 4c 11 05 <unknown>
7994: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7998: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c11a4>
799c: 00 00 00 00 udf #0
00000000000079a0 _lj_vm_callhook.eh:
79a0: 44 00 00 00 udf #68
79a4: 04 00 00 00 udf #4
79a8: f8 ff ff ff <unknown>
79ac: 08 00 00 00 udf #8
79b0: 00 0e d0 01 <unknown>
79b4: 9e 01 9d 02 <unknown>
79b8: 93 03 94 04 <unknown>
79bc: 95 05 96 06 <unknown>
79c0: 97 07 98 08 <unknown>
79c4: 99 09 9a 0a and w25, w12, w26, asr #2
79c8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
79cc: 05 48 0d 05 <unknown>
79d0: 49 0e 05 4a eor w9, w18, w5, lsl #3
79d4: 0f 05 4b 10 adr x15, #614560
79d8: 05 4c 11 05 <unknown>
79dc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
79e0: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c11ec>
79e4: 00 00 00 00 udf #0
00000000000079e8 _lj_vm_hotcall.eh:
79e8: 44 00 00 00 udf #68
79ec: 04 00 00 00 udf #4
79f0: f8 ff ff ff <unknown>
79f4: 3c 00 00 00 udf #60
79f8: 00 0e d0 01 <unknown>
79fc: 9e 01 9d 02 <unknown>
7a00: 93 03 94 04 <unknown>
7a04: 95 05 96 06 <unknown>
7a08: 97 07 98 08 <unknown>
7a0c: 99 09 9a 0a and w25, w12, w26, asr #2
7a10: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7a14: 05 48 0d 05 <unknown>
7a18: 49 0e 05 4a eor w9, w18, w5, lsl #3
7a1c: 0f 05 4b 10 adr x15, #614560
7a20: 05 4c 11 05 <unknown>
7a24: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7a28: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c1234>
7a2c: 00 00 00 00 udf #0
0000000000007a30 _lj_cont_stitch.eh:
7a30: 44 00 00 00 udf #68
7a34: 04 00 00 00 udf #4
7a38: f8 ff ff ff <unknown>
7a3c: 94 00 00 00 udf #148
7a40: 00 0e d0 01 <unknown>
7a44: 9e 01 9d 02 <unknown>
7a48: 93 03 94 04 <unknown>
7a4c: 95 05 96 06 <unknown>
7a50: 97 07 98 08 <unknown>
7a54: 99 09 9a 0a and w25, w12, w26, asr #2
7a58: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7a5c: 05 48 0d 05 <unknown>
7a60: 49 0e 05 4a eor w9, w18, w5, lsl #3
7a64: 0f 05 4b 10 adr x15, #614560
7a68: 05 4c 11 05 <unknown>
7a6c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7a70: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c127c>
7a74: 00 00 00 00 udf #0
0000000000007a78 _lj_vm_profhook.eh:
7a78: 44 00 00 00 udf #68
7a7c: 04 00 00 00 udf #4
7a80: f8 ff ff ff <unknown>
7a84: 1c 00 00 00 udf #28
7a88: 00 0e d0 01 <unknown>
7a8c: 9e 01 9d 02 <unknown>
7a90: 93 03 94 04 <unknown>
7a94: 95 05 96 06 <unknown>
7a98: 97 07 98 08 <unknown>
7a9c: 99 09 9a 0a and w25, w12, w26, asr #2
7aa0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7aa4: 05 48 0d 05 <unknown>
7aa8: 49 0e 05 4a eor w9, w18, w5, lsl #3
7aac: 0f 05 4b 10 adr x15, #614560
7ab0: 05 4c 11 05 <unknown>
7ab4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7ab8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c12c4>
7abc: 00 00 00 00 udf #0
0000000000007ac0 _lj_vm_exit_handler.eh:
7ac0: 44 00 00 00 udf #68
7ac4: 04 00 00 00 udf #4
7ac8: f8 ff ff ff <unknown>
7acc: e8 00 00 00 udf #232
7ad0: 00 0e d0 01 <unknown>
7ad4: 9e 01 9d 02 <unknown>
7ad8: 93 03 94 04 <unknown>
7adc: 95 05 96 06 <unknown>
7ae0: 97 07 98 08 <unknown>
7ae4: 99 09 9a 0a and w25, w12, w26, asr #2
7ae8: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7aec: 05 48 0d 05 <unknown>
7af0: 49 0e 05 4a eor w9, w18, w5, lsl #3
7af4: 0f 05 4b 10 adr x15, #614560
7af8: 05 4c 11 05 <unknown>
7afc: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7b00: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c130c>
7b04: 00 00 00 00 udf #0
0000000000007b08 _lj_vm_exit_interp.eh:
7b08: 44 00 00 00 udf #68
7b0c: 04 00 00 00 udf #4
7b10: f8 ff ff ff <unknown>
7b14: bc 00 00 00 udf #188
7b18: 00 0e d0 01 <unknown>
7b1c: 9e 01 9d 02 <unknown>
7b20: 93 03 94 04 <unknown>
7b24: 95 05 96 06 <unknown>
7b28: 97 07 98 08 <unknown>
7b2c: 99 09 9a 0a and w25, w12, w26, asr #2
7b30: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7b34: 05 48 0d 05 <unknown>
7b38: 49 0e 05 4a eor w9, w18, w5, lsl #3
7b3c: 0f 05 4b 10 adr x15, #614560
7b40: 05 4c 11 05 <unknown>
7b44: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7b48: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c1354>
7b4c: 00 00 00 00 udf #0
0000000000007b50 _lj_vm_modi.eh:
7b50: 44 00 00 00 udf #68
7b54: 04 00 00 00 udf #4
7b58: f8 ff ff ff <unknown>
7b5c: 3c 00 00 00 udf #60
7b60: 00 0e d0 01 <unknown>
7b64: 9e 01 9d 02 <unknown>
7b68: 93 03 94 04 <unknown>
7b6c: 95 05 96 06 <unknown>
7b70: 97 07 98 08 <unknown>
7b74: 99 09 9a 0a and w25, w12, w26, asr #2
7b78: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7b7c: 05 48 0d 05 <unknown>
7b80: 49 0e 05 4a eor w9, w18, w5, lsl #3
7b84: 0f 05 4b 10 adr x15, #614560
7b88: 05 4c 11 05 <unknown>
7b8c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7b90: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c139c>
7b94: 00 00 00 00 udf #0
0000000000007b98 _lj_vm_ffi_callback.eh:
7b98: 44 00 00 00 udf #68
7b9c: 04 00 00 00 udf #4
7ba0: f8 ff ff ff <unknown>
7ba4: b4 00 00 00 udf #180
7ba8: 00 0e d0 01 <unknown>
7bac: 9e 01 9d 02 <unknown>
7bb0: 93 03 94 04 <unknown>
7bb4: 95 05 96 06 <unknown>
7bb8: 97 07 98 08 <unknown>
7bbc: 99 09 9a 0a and w25, w12, w26, asr #2
7bc0: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7bc4: 05 48 0d 05 <unknown>
7bc8: 49 0e 05 4a eor w9, w18, w5, lsl #3
7bcc: 0f 05 4b 10 adr x15, #614560
7bd0: 05 4c 11 05 <unknown>
7bd4: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7bd8: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c13e4>
7bdc: 00 00 00 00 udf #0
0000000000007be0 _lj_cont_ffi_callback.eh:
7be0: 44 00 00 00 udf #68
7be4: 04 00 00 00 udf #4
7be8: f8 ff ff ff <unknown>
7bec: 24 00 00 00 udf #36
7bf0: 00 0e d0 01 <unknown>
7bf4: 9e 01 9d 02 <unknown>
7bf8: 93 03 94 04 <unknown>
7bfc: 95 05 96 06 <unknown>
7c00: 97 07 98 08 <unknown>
7c04: 99 09 9a 0a and w25, w12, w26, asr #2
7c08: 9b 0b 9c 0c st4.2s { v27, v28, v29, v30 }, [x28], x28
7c0c: 05 48 0d 05 <unknown>
7c10: 49 0e 05 4a eor w9, w18, w5, lsl #3
7c14: 0f 05 4b 10 adr x15, #614560
7c18: 05 4c 11 05 <unknown>
7c1c: 4d 12 05 4e tbx.16b v13, { v18 }, v5
7c20: 13 05 4f 14 b #20714572 <_lj_vm_ffi_call.eh+0x13c142c>
7c24: 00 00 00 00 udf #0
0000000000007c28 EH_frame2:
7c28: 14 00 00 00 udf #20
7c2c: 00 00 00 00 udf #0
7c30: 01 7a 52 00 <unknown>
7c34: 01 78 1e 01 <unknown>
7c38: 1b 0c 1f 00 <unknown>
7c3c: 00 00 00 00 udf #0
0000000000007c40 _lj_vm_ffi_call.eh:
7c40: 1c 00 00 00 udf #28
7c44: 04 00 00 00 udf #4
7c48: f8 ff ff ff <unknown>
7c4c: 80 00 00 00 udf #128
7c50: 00 0e 20 9e <unknown>
7c54: 01 9d 02 93 <unknown>
7c58: 03 94 04 00 <unknown>
7c5c: 00 00 00 00 udf #0
.file "buildvm_arm64.dasc"
.text
.align 4
.private_extern _lj_vm_asm_begin
.no_dead_strip _lj_vm_asm_begin
_lj_vm_asm_begin:
.private_extern _lj_BC_ISLT
.no_dead_strip _lj_BC_ISLT
_lj_BC_ISLT:
.long 0xf87b7a60,0x794006b1,0xf87c7a61,0x910012b5
.long 0x8b110ab1,0xd1408231,0xeb40833f,0x54000161
.long 0xeb41833f,0x54000221,0x6b01001f,0x9a95b235
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xfc7b7a60,0x54012f03
.long 0xfc7c7a61,0xeb41833f,0x540000e8,0x54012e81
.long 0x1e620021,0x14000004,0xfc7c7a61,0x54012e03
.long 0x1e620000,0x1e612000,0x9a953235,0x17ffffed
.private_extern _lj_BC_ISGE
.no_dead_strip _lj_BC_ISGE
_lj_BC_ISGE:
.long 0xf87b7a60,0x794006b1,0xf87c7a61,0x910012b5
.long 0x8b110ab1,0xd1408231,0xeb40833f,0x54000161
.long 0xeb41833f,0x54000221,0x6b01001f,0x9a95a235
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xfc7b7a60,0x54012b03
.long 0xfc7c7a61,0xeb41833f,0x540000e8,0x54012a81
.long 0x1e620021,0x14000004,0xfc7c7a61,0x54012a03
.long 0x1e620000,0x1e612000,0x9a952235,0x17ffffed
.private_extern _lj_BC_ISLE
.no_dead_strip _lj_BC_ISLE
_lj_BC_ISLE:
.long 0xf87b7a60,0x794006b1,0xf87c7a61,0x910012b5
.long 0x8b110ab1,0xd1408231,0xeb40833f,0x54000161
.long 0xeb41833f,0x54000221,0x6b01001f,0x9a95d235
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xfc7b7a60,0x54012703
.long 0xfc7c7a61,0xeb41833f,0x540000e8,0x54012681
.long 0x1e620021,0x14000004,0xfc7c7a61,0x54012603
.long 0x1e620000,0x1e612000,0x9a959235,0x17ffffed
.private_extern _lj_BC_ISGT
.no_dead_strip _lj_BC_ISGT
_lj_BC_ISGT:
.long 0xf87b7a60,0x794006b1,0xf87c7a61,0x910012b5
.long 0x8b110ab1,0xd1408231,0xeb40833f,0x54000161
.long 0xeb41833f,0x54000221,0x6b01001f,0x9a95c235
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xfc7b7a60,0x54012303
.long 0xfc7c7a61,0xeb41833f,0x540000e8,0x54012281
.long 0x1e620021,0x14000004,0xfc7c7a61,0x54012203
.long 0x1e620000,0x1e612000,0x9a958235,0x17ffffed
.private_extern _lj_BC_ISEQV
.no_dead_strip _lj_BC_ISEQV
_lj_BC_ISEQV:
.long 0xf87b7a60,0x8b1c0e7c,0x794006b1,0xf9400382
.long 0x910012b5,0x8b110ab1,0xd1408231,0x936ffc4f
.long 0xb10039ff,0x54000ce9,0x936ffc08,0xb1002dff
.long 0xba4b1904,0x540124e0,0xeb02001f,0x54000101
.long 0xaa1103f5,0xb84046b0,0x8b300ec9,0xd3483e1b
.long 0xf947b528,0xd3507e1c,0xd61f0100,0xeb0801ff
.long 0xba4c09e2,0x54ffff08,0x9240b801,0xf940102a
.long 0xb4fffeaa,0x39402949,0x52800003,0x3727fe49
.long 0x1400090d
.private_extern _lj_BC_ISNEV
.no_dead_strip _lj_BC_ISNEV
_lj_BC_ISNEV:
.long 0xf87b7a60,0x8b1c0e7c,0x794006b1,0xf9400382
.long 0x910012b5,0x8b110ab1,0xd1408231,0x936ffc4f
.long 0xb10039ff,0x54000d29,0x936ffc08,0xb1002dff
.long 0xba4b1904,0x540120c0,0xeb02001f,0x540000e1
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xeb0801ff,0xba4c09e2
.long 0x54fffae8,0x9240b801,0xf940102a,0xb4fffa8a
.long 0x39402949,0x52800023,0x3727fa29,0x140008ed
.private_extern _lj_BC_ISEQS
.no_dead_strip _lj_BC_ISEQS
_lj_BC_ISEQS:
.long 0xf87b7a60,0xaa3c03fc,0x794006b1,0xf87c7a81
.long 0x910012b5,0x92800088,0x936ffc0f,0x8b110ab1
.long 0x8b08bc21,0xd1408231,0xb1002dff,0x54011d00
.long 0xeb01001f,0x9a950235,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.private_extern _lj_BC_ISNES
.no_dead_strip _lj_BC_ISNES
_lj_BC_ISNES:
.long 0xf87b7a60,0xaa3c03fc,0x794006b1,0xf87c7a81
.long 0x910012b5,0x92800088,0x936ffc0f,0x8b110ab1
.long 0x8b08bc21,0xd1408231,0xb1002dff,0x54011a80
.long 0xeb01001f,0x9a951235,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.private_extern _lj_BC_ISEQN
.no_dead_strip _lj_BC_ISEQN
_lj_BC_ISEQN:
.long 0xf87b7a60,0x8b1c0e9c,0x794006b1,0xf9400382
.long 0x910012b5,0x8b110ab1,0xd1408231,0xeb40833f
.long 0x54000161,0xeb42833f,0x54000221,0x6b02001f
.long 0x9a950235,0xb84046b0,0x8b300ec9,0xd3483e1b
.long 0xf947b528,0xd3507e1c,0xd61f0100,0x54000183
.long 0xfc7b7a60,0xfd400381,0xeb42833f,0x54000041
.long 0x1e620041,0x1e612000,0x17fffff2,0xfd400381
.long 0x1e620000,0x1e612000,0x17ffffee,0x936ffc0f
.long 0xb1002dff,0x54fffd81,0x140008a9
.private_extern _lj_BC_ISNEN
.no_dead_strip _lj_BC_ISNEN
_lj_BC_ISNEN:
.long 0xf87b7a60,0x8b1c0e9c,0x794006b1,0xf9400382
.long 0x910012b5,0x8b110ab1,0xd1408231,0xeb40833f
.long 0x54000161,0xeb42833f,0x54000221,0x6b02001f
.long 0x9a951235,0xb84046b0,0x8b300ec9,0xd3483e1b
.long 0xf947b528,0xd3507e1c,0xd61f0100,0x54000183
.long 0xfc7b7a60,0xfd400381,0xeb42833f,0x54000041
.long 0x1e620041,0x1e612000,0x17fffff2,0xfd400381
.long 0x1e620000,0x1e612000,0x17ffffee,0x936ffc0f
.long 0xb1002dff,0x54fffd61,0x14000886
.private_extern _lj_BC_ISEQP
.no_dead_strip _lj_BC_ISEQP
_lj_BC_ISEQP:
.long 0xf87b7a68,0x794006b1,0x910012b5,0x9100079c
.long 0x8b110ab1,0x936ffd0f,0xb1002dff,0x54010fc0
.long 0xab0f039f,0xd1408231,0x9a950235,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100
.private_extern _lj_BC_ISNEP
.no_dead_strip _lj_BC_ISNEP
_lj_BC_ISNEP:
.long 0xf87b7a68,0x794006b1,0x910012b5,0x9100079c
.long 0x8b110ab1,0x936ffd0f,0xb1002dff,0x54010da0
.long 0xab0f039f,0xd1408231,0x9a951235,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100
.private_extern _lj_BC_ISTC
.no_dead_strip _lj_BC_ISTC
_lj_BC_ISTC:
.long 0x794006b1,0xf87c7a68,0x910012b5,0x92d00009
.long 0x8b110ab1,0xeb09011f,0xd1408231,0x9a9c337b
.long 0x9a953235,0xf83b7a68,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.private_extern _lj_BC_ISFC
.no_dead_strip _lj_BC_ISFC
_lj_BC_ISFC:
.long 0x794006b1,0xf87c7a68,0x910012b5,0x92d00009
.long 0x8b110ab1,0xeb09011f,0xd1408231,0x9a9c237b
.long 0x9a952235,0xf83b7a68,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.private_extern _lj_BC_IST
.no_dead_strip _lj_BC_IST
_lj_BC_IST:
.long 0x794006b1,0xf87c7a68,0x910012b5,0x92d00009
.long 0x8b110ab1,0xeb09011f,0xd1408231,0x9a953235
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100
.private_extern _lj_BC_ISF
.no_dead_strip _lj_BC_ISF
_lj_BC_ISF:
.long 0x794006b1,0xf87c7a68,0x910012b5,0x92d00009
.long 0x8b110ab1,0xeb09011f,0xd1408231,0x9a952235
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100
.private_extern _lj_BC_ISTYPE
.no_dead_strip _lj_BC_ISTYPE
_lj_BC_ISTYPE:
.long 0xf87b7a68,0xab88bf9f,0x54010581,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100
.private_extern _lj_BC_ISNUM
.no_dead_strip _lj_BC_ISNUM
_lj_BC_ISNUM:
.long 0xf87b6a68,0xeb48833f,0x54010469,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100
.private_extern _lj_BC_MOV
.no_dead_strip _lj_BC_MOV
_lj_BC_MOV:
.long 0xf87c7a68,0xf83b7a68,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.private_extern _lj_BC_NOT
.no_dead_strip _lj_BC_NOT
_lj_BC_NOT:
.long 0xf87c7a68,0x92d00009,0x92e0002a,0xeb09011f
.long 0x9a8a3128,0xf83b7a68,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.private_extern _lj_BC_UNM
.no_dead_strip _lj_BC_UNM
_lj_BC_UNM:
.long 0xf87c7a68,0x936ffd0f,0xb10039ff,0x54010268
.long 0xd2410108,0x540000a1,0x6b0803e8,0xd2e83c02
.long 0x8b180108,0x9a827108,0xf83b7a68,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100
.private_extern _lj_BC_LEN
.no_dead_strip _lj_BC_LEN
_lj_BC_LEN:
.long 0xf87c7a60,0x936ffc0f,0xb10015ff,0x9240b800
.long 0x54000141,0xb9401400,0x8b180000,0xf83b7a60
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xb10031ff,0x54010101
bl _lj_tab_len
.long 0x17fffff5
.private_extern _lj_BC_ADDVN
.no_dead_strip _lj_BC_ADDVN
_lj_BC_ADDVN:
.long 0xd3587e11,0x92401f9c,0xf8717a60,0xf87c7a81
.long 0xeb40833f,0x540001a1,0xeb41833f,0x54000161
.long 0x2b010000,0x5400fc86,0x8b180000,0xf83b7a60
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xfc717a60,0xfc7c7a81
.long 0xeb40833f,0x5400fb09,0xeb41833f,0x5400fac9
.long 0x1e612800,0xfc3b7a60,0x17fffff2
.private_extern _lj_BC_SUBVN
.no_dead_strip _lj_BC_SUBVN
_lj_BC_SUBVN:
.long 0xd3587e11,0x92401f9c,0xf8717a60,0xf87c7a81
.long 0xeb40833f,0x540001a1,0xeb41833f,0x54000161
.long 0x6b010000,0x5400f926,0x8b180000,0xf83b7a60
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xfc717a60,0xfc7c7a81
.long 0xeb40833f,0x5400f7a9,0xeb41833f,0x5400f769
.long 0x1e613800,0xfc3b7a60,0x17fffff2
.private_extern _lj_BC_MULVN
.no_dead_strip _lj_BC_MULVN
_lj_BC_MULVN:
.long 0xd3587e11,0x92401f9c,0xf8717a60,0xf87c7a81
.long 0xeb40833f,0x540001e1,0xeb41833f,0x540001a1
.long 0x9b217c00,0xeb20c01f,0x2a0003e0,0x5400f581
.long 0x8b180000,0xf83b7a60,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.long 0xfc717a60,0xfc7c7a81,0xeb40833f,0x5400f409
.long 0xeb41833f,0x5400f3c9,0x1e610800,0xfc3b7a60
.long 0x17fffff2
.private_extern _lj_BC_DIVVN
.no_dead_strip _lj_BC_DIVVN
_lj_BC_DIVVN:
.long 0xd3587e11,0x92401f9c,0xf8717a60,0xf87c7a81
.long 0xfc717a60,0xfc7c7a81,0xeb40833f,0x5400f269
.long 0xeb41833f,0x5400f229,0x1e611800,0xfc3b7a60
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100
.private_extern _lj_BC_MODVN
.no_dead_strip _lj_BC_MODVN
_lj_BC_MODVN:
.long 0xd3587e11,0x92401f9c,0xf8717a60,0xf87c7a81
.long 0xeb40833f,0x540001a1,0xeb41833f,0x54000161
.long 0x3400f001,0x94000ca6,0x8b180000,0xf83b7a60
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xfc717a60,0xfc7c7a81
.long 0xeb40833f,0x5400ee69,0xeb41833f,0x5400ee29
.long 0x1e611802,0x1e654042,0x1f418040,0xfc3b7a60
.long 0x17fffff0
.private_extern _lj_BC_ADDNV
.no_dead_strip _lj_BC_ADDNV
_lj_BC_ADDNV:
.long 0x92401f9c,0xd3587e11,0xf87c7a80,0xf8717a61
.long 0xeb40833f,0x540001a1,0xeb41833f,0x54000161
.long 0x2b010000,0x5400eca6,0x8b180000,0xf83b7a60
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xfc7c7a80,0xfc717a61
.long 0xeb40833f,0x5400eb29,0xeb41833f,0x5400eae9
.long 0x1e612800,0xfc3b7a60,0x17fffff2
.private_extern _lj_BC_SUBNV
.no_dead_strip _lj_BC_SUBNV
_lj_BC_SUBNV:
.long 0x92401f9c,0xd3587e11,0xf87c7a80,0xf8717a61
.long 0xeb40833f,0x540001a1,0xeb41833f,0x54000161
.long 0x6b010000,0x5400e946,0x8b180000,0xf83b7a60
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xfc7c7a80,0xfc717a61
.long 0xeb40833f,0x5400e7c9,0xeb41833f,0x5400e789
.long 0x1e613800,0xfc3b7a60,0x17fffff2
.private_extern _lj_BC_MULNV
.no_dead_strip _lj_BC_MULNV
_lj_BC_MULNV:
.long 0x92401f9c,0xd3587e11,0xf87c7a80,0xf8717a61
.long 0xeb40833f,0x540001e1,0xeb41833f,0x540001a1
.long 0x9b217c00,0xeb20c01f,0x2a0003e0,0x5400e5a1
.long 0x8b180000,0xf83b7a60,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.long 0xfc7c7a80,0xfc717a61,0xeb40833f,0x5400e429
.long 0xeb41833f,0x5400e3e9,0x1e610800,0xfc3b7a60
.long 0x17fffff2
.private_extern _lj_BC_DIVNV
.no_dead_strip _lj_BC_DIVNV
_lj_BC_DIVNV:
.long 0x92401f9c,0xd3587e11,0xf87c7a80,0xf8717a61
.long 0xfc7c7a80,0xfc717a61,0xeb40833f,0x5400e289
.long 0xeb41833f,0x5400e249,0x1e611800,0xfc3b7a60
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100
.private_extern _lj_BC_MODNV
.no_dead_strip _lj_BC_MODNV
_lj_BC_MODNV:
.long 0x92401f9c,0xd3587e11,0xf87c7a80,0xf8717a61
.long 0xeb40833f,0x540001a1,0xeb41833f,0x54000161
.long 0x3400e021,0x94000c24,0x8b180000,0xf83b7a60
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xfc7c7a80,0xfc717a61
.long 0xeb40833f,0x5400de89,0xeb41833f,0x5400de49
.long 0x1e611802,0x1e654042,0x1f418040,0xfc3b7a60
.long 0x17fffff0
.private_extern _lj_BC_ADDVV
.no_dead_strip _lj_BC_ADDVV
_lj_BC_ADDVV:
.long 0xd3587e11,0x92401f9c,0xf8717a60,0xf87c7a61
.long 0xeb40833f,0x540001a1,0xeb41833f,0x54000161
.long 0x2b010000,0x5400dd26,0x8b180000,0xf83b7a60
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xfc717a60,0xfc7c7a61
.long 0xeb40833f,0x5400dba9,0xeb41833f,0x5400db69
.long 0x1e612800,0xfc3b7a60,0x17fffff2
.private_extern _lj_BC_SUBVV
.no_dead_strip _lj_BC_SUBVV
_lj_BC_SUBVV:
.long 0xd3587e11,0x92401f9c,0xf8717a60,0xf87c7a61
.long 0xeb40833f,0x540001a1,0xeb41833f,0x54000161
.long 0x6b010000,0x5400d9c6,0x8b180000,0xf83b7a60
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xfc717a60,0xfc7c7a61
.long 0xeb40833f,0x5400d849,0xeb41833f,0x5400d809
.long 0x1e613800,0xfc3b7a60,0x17fffff2
.private_extern _lj_BC_MULVV
.no_dead_strip _lj_BC_MULVV
_lj_BC_MULVV:
.long 0xd3587e11,0x92401f9c,0xf8717a60,0xf87c7a61
.long 0xeb40833f,0x540001e1,0xeb41833f,0x540001a1
.long 0x9b217c00,0xeb20c01f,0x2a0003e0,0x5400d621
.long 0x8b180000,0xf83b7a60,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.long 0xfc717a60,0xfc7c7a61,0xeb40833f,0x5400d4a9
.long 0xeb41833f,0x5400d469,0x1e610800,0xfc3b7a60
.long 0x17fffff2
.private_extern _lj_BC_DIVVV
.no_dead_strip _lj_BC_DIVVV
_lj_BC_DIVVV:
.long 0xd3587e11,0x92401f9c,0xf8717a60,0xf87c7a61
.long 0xfc717a60,0xfc7c7a61,0xeb40833f,0x5400d309
.long 0xeb41833f,0x5400d2c9,0x1e611800,0xfc3b7a60
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100
.private_extern _lj_BC_MODVV
.no_dead_strip _lj_BC_MODVV
_lj_BC_MODVV:
.long 0xd3587e11,0x92401f9c,0xf8717a60,0xf87c7a61
.long 0xeb40833f,0x540001a1,0xeb41833f,0x54000161
.long 0x3400d0a1,0x94000ba2,0x8b180000,0xf83b7a60
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xfc717a60,0xfc7c7a61
.long 0xeb40833f,0x5400cf09,0xeb41833f,0x5400cec9
.long 0x1e611802,0x1e654042,0x1f418040,0xfc3b7a60
.long 0x17fffff0
.private_extern _lj_BC_POW
.no_dead_strip _lj_BC_POW
_lj_BC_POW:
.long 0xd3587e11,0x92401f9c,0xf8717a60,0xf87c7a61
.long 0xfc717a60,0xfc7c7a61,0xeb40833f,0x5400cd29
.long 0xeb41833f,0x5400cce9
bl _pow
.long 0xfc3b7a60,0xb84046b0,0x8b300ec9,0xd3483e1b
.long 0xf947b528,0xd3507e1c,0xd61f0100
.private_extern _lj_BC_CAT
.no_dead_strip _lj_BC_CAT
_lj_BC_CAT:
.long 0xd3587e11,0x92401f9c,0xf90012f3,0xcb110382
.long 0x8b1c0e61,0xaa1703e0,0xf90007f5
bl _lj_meta_cat
.long 0x385ff2b1,0xf94012f3,0xb500cba0,0xf8717a68
.long 0xf83b7a68,0xb84046b0,0x8b300ec9,0xd3483e1b
.long 0xf947b528,0xd3507e1c,0xd61f0100
.private_extern _lj_BC_KSTR
.no_dead_strip _lj_BC_KSTR
_lj_BC_KSTR:
.long 0xaa3c03fc,0xf87c7a88,0x92800089,0x8b09bd08
.long 0xf83b7a68,0xb84046b0,0x8b300ec9,0xd3483e1b
.long 0xf947b528,0xd3507e1c,0xd61f0100
.private_extern _lj_BC_KCDATA
.no_dead_strip _lj_BC_KCDATA
_lj_BC_KCDATA:
.long 0xaa3c03fc,0xf87c7a88,0x92800149,0x8b09bd08
.long 0xf83b7a68,0xb84046b0,0x8b300ec9,0xd3483e1b
.long 0xf947b528,0xd3507e1c,0xd61f0100
.private_extern _lj_BC_KSHORT
.no_dead_strip _lj_BC_KSHORT
_lj_BC_KSHORT:
.long 0x13003f9c,0x8b180388,0xf83b7a68,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100
.private_extern _lj_BC_KNUM
.no_dead_strip _lj_BC_KNUM
_lj_BC_KNUM:
.long 0xf87c7a88,0xf83b7a68,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.private_extern _lj_BC_KPRI
.no_dead_strip _lj_BC_KPRI
_lj_BC_KPRI:
.long 0xaa3cbfe8,0xf83b7a68,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.private_extern _lj_BC_KNIL
.no_dead_strip _lj_BC_KNIL
_lj_BC_KNIL:
.long 0x8b1b0e7b,0x8b1c0e7c,0xf800877a,0xeb1c037f
.long 0xf800877a,0x54ffffcb,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.private_extern _lj_BC_UGET
.no_dead_strip _lj_BC_UGET
_lj_BC_UGET:
.long 0xf85f0261,0x9100179c,0x9240b821,0xf87c7821
.long 0xf9401021,0xf9400028,0xf83b7a68,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100
.private_extern _lj_BC_USETV
.no_dead_strip _lj_BC_USETV
_lj_BC_USETV:
.long 0xf85f0261,0x9100177b,0x9240b821,0xf87b7820
.long 0xf87c7a62,0xf9401001,0x3940200a,0x39402808
.long 0x936ffc4f,0xf9000022,0x910011ef,0x721e015f
.long 0x7a401904,0xba4a19e0,0x540000e8,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100,0x9240b842,0x39402049,0x7200053f
.long 0x54fffee0,0xaa1603e0
bl _lj_gc_barrieruv
.long 0x17fffff4
.private_extern _lj_BC_USETS
.no_dead_strip _lj_BC_USETS
_lj_BC_USETS:
.long 0xf85f0261,0x9100177b,0xaa3c03fc,0x9240b821
.long 0xf87b7820,0xf87c7a82,0x92800088,0xf9401001
.long 0x3940200a,0x8b08bc48,0x39402049,0xf9000028
.long 0x371000ea,0xb84046b0,0x8b300ec9,0xd3483e1b
.long 0xf947b528,0xd3507e1c,0xd61f0100,0x39402808
.long 0x7200053f,0x7a401904,0x54fffee0,0xaa1603e0
bl _lj_gc_barrieruv
.long 0x17fffff4
.private_extern _lj_BC_USETN
.no_dead_strip _lj_BC_USETN
_lj_BC_USETN:
.long 0xf85f0261,0x9100177b,0x9240b821,0xf87b7821
.long 0xf87c7a88,0xf9401021,0xf9000028,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100
.private_extern _lj_BC_USETP
.no_dead_strip _lj_BC_USETP
_lj_BC_USETP:
.long 0xf85f0261,0x9100177b,0x9240b821,0xf87b7821
.long 0xaa3cbfe8,0xf9401021,0xf9000028,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100
.private_extern _lj_BC_UCLO
.no_dead_strip _lj_BC_UCLO
_lj_BC_UCLO:
.long 0xf94022e2,0x8b1c0abc,0xf90012f3,0xd1408395
.long 0xb40000a2,0xaa1703e0,0x8b1b0e61
bl _lj_func_closeuv
.long 0xf94012f3,0xb84046b0,0x8b300ec9,0xd3483e1b
.long 0xf947b528,0xd3507e1c,0xd61f0100
.private_extern _lj_BC_FNEW
.no_dead_strip _lj_BC_FNEW
_lj_BC_FNEW:
.long 0xaa3c03fc,0xf90012f3,0xf85f0262,0xf90007f5
.long 0xf87c7a81,0xaa1703e0,0x9240b842
bl _lj_func_newL_gc
.long 0xf94012f3,0x92800108,0x8b08bc00,0xf83b7a60
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100
.private_extern _lj_BC_TNEW
.no_dead_strip _lj_BC_TNEW
_lj_BC_TNEW:
.long 0xa9410ec2,0xf90012f3,0xf90007f5,0xaa1703e0
.long 0xeb03005f,0x54000202,0x92402b81,0xd34bff82
.long 0xf11ffc3f,0x52810028,0x9a881021
bl _lj_tab_new
.long 0xf94012f3,0xf2ffff40,0xf83b7a60,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100
bl _lj_gc_step_fixtop
.long 0xaa1703e0,0x17ffffef
.private_extern _lj_BC_TDUP
.no_dead_strip _lj_BC_TDUP
_lj_BC_TDUP:
.long 0xa9410ec2,0xf90012f3,0xf90007f5,0xaa1703e0
.long 0xeb03005f,0x540001a2,0xaa3c03fc,0xf87c7a81
bl _lj_tab_dup
.long 0xf94012f3,0xf2ffff40,0xf83b7a60,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100
bl _lj_gc_step_fixtop
.long 0xaa1703e0,0x17fffff2
.private_extern _lj_BC_GGET
.no_dead_strip _lj_BC_GGET
_lj_BC_GGET:
.long 0xf85f0260,0xaa3c03fc,0x9240b800,0xf9400801
.long 0xf87c7a9c,0x14000033
.private_extern _lj_BC_GSET
.no_dead_strip _lj_BC_GSET
_lj_BC_GSET:
.long 0xf85f0260,0xaa3c03fc,0x9240b800,0xf9400801
.long 0xf87c7a9c,0x140000ab
.private_extern _lj_BC_TGETV
.no_dead_strip _lj_BC_TGETV
_lj_BC_TGETV:
.long 0xd3587e11,0x92401f9c,0xf8717a61,0xf87c7a69
.long 0x936ffc2f,0xb10031ff,0x9240b821,0x540098e1
.long 0xeb49833f,0x540002a1,0xf9400822,0xb9403020
.long 0x8b294c42,0x6b00013f,0x54009802,0xf9400048
.long 0xeb1a011f,0x54000100,0xf83b7a68,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100,0xf9401020,0xb4ffff00,0x39402809
.long 0x3707fec9,0x140004b1,0x936ffd2f,0xb10015ff
.long 0x540095c1,0x9240b93c,0x1400000a
.private_extern _lj_BC_TGETS
.no_dead_strip _lj_BC_TGETS
_lj_BC_TGETS:
.long 0xd3587e11,0x92401f9c,0xf8717a61,0xaa3c03fc
.long 0xf87c7a9c,0x936ffc2f,0xb10031ff,0x9240b821
.long 0x54009281,0xb9403429,0xb9400f8a,0xf9401422
.long 0x0a0a0129,0x8b090529,0x92800083,0x8b090c42
.long 0x8b03bf83,0xa9400048,0xf9400842,0xeb03001f
.long 0x54000141,0xeb1a011f,0x54000140,0xf83b7a68
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xb5fffe62,0xaa1a03e8
.long 0xf9401020,0xb4fffec0,0x39402809,0x3707fe89
.long 0x1400047c
.private_extern _lj_BC_TGETB
.no_dead_strip _lj_BC_TGETB
_lj_BC_TGETB:
.long 0xd3587e11,0x92401f9c,0xf8717a61,0x936ffc2f
.long 0xb10031ff,0x9240b821,0x54008f61,0xf9400822
.long 0xb9403020,0x8b1c0c42,0x6b00039f,0x54008ec2
.long 0xf9400048,0xeb1a011f,0x54000100,0xf83b7a68
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xf9401020,0xb4ffff00
.long 0x39402809,0x3707fec9,0x14000467
.private_extern _lj_BC_TGETR
.no_dead_strip _lj_BC_TGETR
_lj_BC_TGETR:
.long 0xd3587e11,0x92401f9c,0xf8717a60,0xf87c7a69
.long 0x9240b800,0xf9400802,0xb940300a,0x8b294c42
.long 0x6b0a013f,0x54008f22,0xf9400048,0xf83b7a68
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100
.private_extern _lj_BC_TSETV
.no_dead_strip _lj_BC_TSETV
_lj_BC_TSETV:
.long 0xd3587e11,0x92401f9c,0xf8717a61,0xf87c7a69
.long 0x936ffc2f,0xb10031ff,0x9240b821,0x54008fc1
.long 0xeb49833f,0x540003c1,0xf9400822,0xb9403020
.long 0x8b294c42,0x6b00013f,0x54008ee2,0xf9400049
.long 0xf87b7a68,0x3940202a,0xeb1a013f,0x54000120
.long 0xf9000048,0x3710018a,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.long 0xf9401020,0xb4fffee0,0x39402809,0x370ffea9
.long 0x14000465,0xf94022c9,0x121d794a,0xf90022c1
.long 0x3900202a,0xf9000c29,0x17fffff0,0x936ffd2f
.long 0xb10015ff,0x54008b81,0x9240b93c,0x1400000a
.private_extern _lj_BC_TSETS
.no_dead_strip _lj_BC_TSETS
_lj_BC_TSETS:
.long 0xd3587e11,0x92401f9c,0xf8717a61,0xaa3c03fc
.long 0xf87c7a9c,0x936ffc2f,0xb10031ff,0x9240b821
.long 0x54008841,0xb9403429,0xb9400f8a,0xf9401422
.long 0x0a0a0129,0x8b090529,0x92800083,0x8b090c42
.long 0x8b03bf83,0x3900283f,0xa9400049,0xf940084b
.long 0x3940202a,0xeb03001f,0x54000221,0xf87b7a68
.long 0xeb1a013f,0x54000120,0xf9000048,0x371003ca
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xf9401020,0xb4fffee0
.long 0x39402809,0x370ffea9,0x14000428,0xaa0b03e2
.long 0xb5fffd4b,0xf9401020,0xb4000060,0x39402809
.long 0x36088449,0x92800089,0xf90007f5,0x8b09bf88
.long 0xf90012f3,0xaa1703e0,0xf9000fe8,0x910063e2
bl _lj_tab_newkey
.long 0xf94012f3,0xf87b7a68,0xf9000008,0x17ffffe4
.long 0xf94022c9,0x121d794a,0xf90022c1,0x3900202a
.long 0xf9000c29,0x17ffffde
.private_extern _lj_BC_TSETB
.no_dead_strip _lj_BC_TSETB
_lj_BC_TSETB:
.long 0xd3587e11,0x92401f9c,0xf8717a61,0x936ffc2f
.long 0xb10031ff,0x9240b821,0x540081e1,0xf9400822
.long 0xb9403020,0x8b1c0c42,0x6b00039f,0x54008142
.long 0xf9400049,0xf87b7a68,0x3940202a,0xeb1a013f
.long 0x54000120,0xf9000048,0x3710018a,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100,0xf9401020,0xb4fffee0,0x39402809
.long 0x370ffea9,0x140003f8,0xf94022c9,0x121d794a
.long 0xf90022c1,0x3900202a,0xf9000c29,0x17fffff0
.private_extern _lj_BC_TSETM
.no_dead_strip _lj_BC_TSETM
_lj_BC_TSETM:
.long 0x8b1b0e7b,0xb94023f1,0xf85f8361,0xf87c7a89
.long 0xd1002231,0xb40001f1,0x9240b821,0xb9403020
.long 0x0b510d22,0xf9400823,0xeb00005f,0x8b110371
.long 0x540001c8,0x8b294c69,0x3940202a,0xf8408768
.long 0xf8008528,0xeb11037f,0x54ffffa3,0x3710018a
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100,0xf90012f3,0xaa1703e0
.long 0xf90007f5
bl _lj_tab_reasize
.long 0x17ffffe3,0xf94022c9,0x121d794a,0xf90022c1
.long 0x3900202a,0xf9000c29,0x17fffff0
.private_extern _lj_BC_TSETR
.no_dead_strip _lj_BC_TSETR
_lj_BC_TSETR:
.long 0xd3587e11,0x92401f9c,0xf8717a61,0xf87c7a69
.long 0x9240b821,0xf9400820,0x3940202a,0xb9403023
.long 0x8b294c00,0x3710016a,0x6b03013f,0x54007bc2
.long 0xf87b7a68,0xf9000008,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.long 0xf94022c8,0x121d794a,0xf90022c1,0x3900202a
.long 0xf9000c28,0x17fffff1
.private_extern _lj_BC_CALLM
.no_dead_strip _lj_BC_CALLM
_lj_BC_CALLM:
.long 0xb94023e8,0xd37d1f9c,0x8b08039c,0x14000002
.private_extern _lj_BC_CALL
.no_dead_strip _lj_BC_CALL
_lj_BC_CALL:
.long 0xd37d1f9c,0xaa1303f1,0x8b1b0e73,0xf9400262
.long 0xd100239c,0x91004273,0x936ffc4f,0xb10025ff
.long 0x9240b842,0x540083c1,0xf81f8275,0xf9401055
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0x8b1b0e7b,0xd61f0100
.private_extern _lj_BC_CALLMT
.no_dead_strip _lj_BC_CALLMT
_lj_BC_CALLMT:
.long 0xb94023e8,0x8b1c0d1c,0x14000002
.private_extern _lj_BC_CALLT
.no_dead_strip _lj_BC_CALLT
_lj_BC_CALLT:
.long 0xd37df39c,0x8b1b0e7b,0xf9400369,0xd100239c
.long 0x9100437b,0x936ffd2f,0xb10025ff,0x9240b922
.long 0x54008361,0xf85f8275,0x52800011,0x3940284a
.long 0xf24006bf,0x54000321,0xf81f0269,0xb40000fc
.long 0xf8716b68,0x91002229,0xeb1c013f,0xf8316a68
.long 0xaa0903f1,0x54ffff61,0xf100055f,0x54000108
.long 0xf9401055,0xb84046b0,0x8b300ec9,0xd3483e1b
.long 0xf947b528,0x8b1b0e7b,0xd61f0100,0x385fd2bb
.long 0xcb1b0e60,0xf85e0000,0x9240b800,0xf9401000
.long 0xf85b8014,0x17fffff3,0xd24006b5,0xf2400abf
.long 0x9a8a122a,0x54fffca1,0xcb150273,0xf85f8275
.long 0xf24006bf,0x9a8a122a,0x17ffffe0
.private_extern _lj_BC_ITERC
.no_dead_strip _lj_BC_ITERC
_lj_BC_ITERC:
.long 0x8b1b0e7b,0xf85e8362,0xaa1303f1,0xa97f0760
.long 0x91004373,0x5280021c,0xf9000362,0xa9010760
.long 0x936ffc4f,0xb10025ff,0x9240b842,0x54007b01
.long 0xf81f8275,0xf9401055,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0x8b1b0e7b,0xd61f0100
.private_extern _lj_BC_ITERN
.no_dead_strip _lj_BC_ITERN
_lj_BC_ITERN:
.long 0x8b1b0e7b,0xf85f0371,0x794006ab,0xb85f8360
.long 0x910012b5,0x8b0b0aab,0x9240ba31,0xd140816b
.long 0xb9403229,0xf9400a21,0xeb09001c,0x8b000c22
.long 0x54000202,0xf9400048,0xeb1a011f,0x9a801400
.long 0x54ffff40,0x8b180000,0xa9002360,0x91000400
.long 0xb81f8360,0xaa0b03f5,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.long 0xb940362a,0xf9401631,0x8b1c0780,0xeb0a039f
.long 0x8b000e22,0x54fffea8,0xa9400048,0xeb1a011f
.long 0x9100079c,0x54ffff20,0xa9002360,0x8b090380
.long 0x17ffffec
.private_extern _lj_BC_VARG
.no_dead_strip _lj_BC_VARG
_lj_BC_VARG:
.long 0xd3587e11,0x92401f9c,0xf85f8269,0x8b1c0e7c
.long 0x8b1b0e7b,0x91000f9c,0x8b110f6a,0xcb09039c
.long 0xd100426b,0xb40001d1,0xd100414a,0xeb0b039f
.long 0xf8408788,0x9a9a3108,0xeb0a037f,0xf8008768
.long 0x54ffff63,0xb84046b0,0x8b300ec9,0xd3483e1b
.long 0xf947b528,0xd3507e1c,0xd61f0100,0xf9401ae8
.long 0xeb1c016a,0x9a8ad3f1,0x91002231,0x8b0a0369
.long 0xb90023f1,0x54fffe8d,0xeb08013f,0x540000c8
.long 0xf8408788,0xf8008768,0xeb0b039f,0x54ffffa3
.long 0x17ffffed,0xd343fd41,0xa9026ef3,0xaa1703e0
.long 0xcb13039c,0xf90007f5
bl _lj_state_growstack
.long 0xa9426ef3,0x8b1c027c,0xd100426b,0x17fffff2
.private_extern _lj_BC_ISNEXT
.no_dead_strip _lj_BC_ISNEXT
_lj_BC_ISNEXT:
.long 0x8b1b0e7b,0xf85e8360,0x8b1c0abc,0xa97f0f62
.long 0xd140839c,0x936ffc0f,0xb10025ff,0x9240b800
.long 0x54000221,0x936ffc48,0x39402809,0xb100311f
.long 0xfa5a0060,0x7a440920,0x54000161,0x320f77e8
.long 0xd3607d08,0xf81f8368,0xaa1c03f5,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100,0x52800b08,0x528008a9,0x381fc2a8
.long 0x39000389,0x17fffff5
.private_extern _lj_BC_RETM
.no_dead_strip _lj_BC_RETM
_lj_BC_RETM:
.long 0xb94023e8,0xf85f8275,0x8b1b0e7b,0x8b1c0d1c
.long 0x14000004
.private_extern _lj_BC_RET
.no_dead_strip _lj_BC_RET
_lj_BC_RET:
.long 0xf85f8275,0xd37df39c,0x8b1b0e7b,0xb90023fc
.long 0xf24006a0,0xd24006a1,0x540003e1,0xb85fc2b0
.long 0xf1002389,0xd1004262,0x540000c0,0xf8408768
.long 0x91002273,0xd1002129,0xf81e8268,0xb5ffff89
.long 0xd3483e1b,0xcb1b0c43,0xd3587e11,0xf85f0060
.long 0xeb110f9f,0x54000163,0x9240b800,0xaa0303f3
.long 0xf9401001,0xf85b8034,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.long 0x91002273,0x9100239c,0xf81e827a,0x17fffff1
.long 0x8b1b0e7b,0xf240083f,0x54003061,0xcb010273
.long 0xf85f8275,0x17ffffdb
.private_extern _lj_BC_RET0
.no_dead_strip _lj_BC_RET0
_lj_BC_RET0:
.long 0xf85f8275,0xd37df39c,0xb90023fc,0xf24006a0
.long 0xd24006a1,0x54fffea1,0xb85fc2b0,0xd1004263
.long 0xd3483e1b,0xcb1b0c73,0xd3587e11,0xf85f0260
.long 0xeb110f9f,0x54000143,0x9240b800,0xf9401001
.long 0xf85b8034,0xb84046b0,0x8b300ec9,0xd3483e1b
.long 0xf947b528,0xd3507e1c,0xd61f0100,0x9100239c
.long 0xf800847a,0x17fffff3
.private_extern _lj_BC_RET1
.no_dead_strip _lj_BC_RET1
_lj_BC_RET1:
.long 0xf85f8275,0xd37df39c,0xb90023fc,0xf24006a0
.long 0xd24006a1,0x54fffb61,0xb85fc2b0,0xf87b7a68
.long 0xd1004263,0xd3483e1b,0xcb1b0c73,0xf8008468
.long 0xd3587e11,0xf85f0260,0xeb110f9f,0x54000143
.long 0x9240b800,0xf9401001,0xf85b8034,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100,0x9100239c,0xf800847a,0x17fffff3
.private_extern _lj_BC_FORI
.no_dead_strip _lj_BC_FORI
_lj_BC_FORI:
.long 0x8b1b0e7b,0xa9400760,0xf9400b62,0x8b1c0abc
.long 0xd140839c,0xeb40833f,0x54000221,0xeb41833f
.long 0x54006101,0xeb42833f,0x540060c1,0x37f80142
.long 0x6b01001f,0x9a95c395,0xf9000f60,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100,0x6b00003f,0x17fffff7,0x6d400760
.long 0x54005f03,0xeb41833f,0x54005ec9,0xeb42833f
.long 0x54005e89,0xfd000f60,0xb7f80082,0x1e612000
.long 0x9a958395,0x17ffffee,0x1e602020,0x17fffffd
.private_extern _lj_BC_JFORI
.no_dead_strip _lj_BC_JFORI
_lj_BC_JFORI:
.long 0x8b1b0e7b,0xa9400760,0xf9400b62,0x8b1c0abc
.long 0xd140839c,0xeb40833f,0x54000261,0xeb41833f
.long 0x54005c81,0xeb42833f,0x54005c41,0x37f80182
.long 0x6b01001f,0xaa1c03f5,0x785fe39c,0xf9000f60
.long 0x540011ed,0xb84046b0,0x8b300ec9,0xd3483e1b
.long 0xf947b528,0xd3507e1c,0xd61f0100,0x6b00003f
.long 0x17fffff5,0x6d400760,0x54005a43,0xeb41833f
.long 0x54005a09,0xeb42833f,0x540059c9,0xfd000f60
.long 0xb7f800a2,0x1e612000,0x785fe39c,0x54000f89
.long 0x17ffffed,0x1e602020,0x17fffffc
.private_extern _lj_BC_FORL
.no_dead_strip _lj_BC_FORL
_lj_BC_FORL:
.long 0xd341fea0,0x927f1400,0x913ba000,0x78606ac1
.long 0xf1000821,0x78206ac1,0x5400df23
.private_extern _lj_BC_IFORL
.no_dead_strip _lj_BC_IFORL
_lj_BC_IFORL:
.long 0x8b1b0e7b,0xa9400760,0xf9400b62,0x8b1c0abc
.long 0xd140839c,0xeb40833f,0x54000221,0x2b020000
.long 0x540000e6,0x8b180008,0x37f80162,0x6b01001f
.long 0x9a95d395,0xf9000368,0xf9000f68,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100,0x6b00003f,0x17fffff6,0x6d400760
.long 0x540054c3,0xfd400b62,0x1e622800,0xb7f800c2
.long 0x1e612000,0xfd000360,0xfd000f60,0x9a959395
.long 0x17ffffef,0x1e602020,0x17fffffb
.private_extern _lj_BC_JFORL
.no_dead_strip _lj_BC_JFORL
_lj_BC_JFORL:
.long 0x8b1b0e7b,0xa9400760,0xf9400b62,0xeb40833f
.long 0x54000221,0x2b020000,0x540000e6,0x8b180008
.long 0x37f80162,0x6b01001f,0xf9000368,0xf9000f68
.long 0x5400084d,0xb84046b0,0x8b300ec9,0xd3483e1b
.long 0xf947b528,0xd3507e1c,0xd61f0100,0x6b00003f
.long 0x17fffff6,0x6d400760,0x540050a3,0xfd400b62
.long 0x1e622800,0xb7f800c2,0x1e612000,0xfd000360
.long 0xfd000f60,0x54000629,0x17ffffef,0x1e602020
.long 0x17fffffb
.private_extern _lj_BC_ITERL
.no_dead_strip _lj_BC_ITERL
_lj_BC_ITERL:
.long 0xd341fea0,0x927f1400,0x913ba000,0x78606ac1
.long 0xf1000821,0x78206ac1,0x5400d5c3
.private_extern _lj_BC_IITERL
.no_dead_strip _lj_BC_IITERL
_lj_BC_IITERL:
.long 0xf87b7a60,0x8b1b0e69,0xeb1a001f,0x54000080
.long 0x8b1c0aa8,0xd1408115,0xf81f8120,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100
.private_extern _lj_BC_JITERL
.no_dead_strip _lj_BC_JITERL
_lj_BC_JITERL:
.long 0xf87b7a60,0x8b1b0e69,0xeb1a001f,0x54000060
.long 0xf81f8120,0x14000014,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.private_extern _lj_BC_LOOP
.no_dead_strip _lj_BC_LOOP
_lj_BC_LOOP:
.long 0xd341fea0,0x927f1400,0x913ba000,0x78606ac1
.long 0xf1000821,0x78206ac1,0x5400d1c3
.private_extern _lj_BC_ILOOP
.no_dead_strip _lj_BC_ILOOP
_lj_BC_ILOOP:
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100
.private_extern _lj_BC_JLOOP
.no_dead_strip _lj_BC_JLOOP
_lj_BC_JLOOP:
.long 0xf94222c0,0x52800001,0xf87c781c,0xb900bac1
.long 0xf9402f9b,0xf900bed3,0xf90072d7,0xd10043ff
.long 0xd61f0360
.private_extern _lj_BC_JMP
.no_dead_strip _lj_BC_JMP
_lj_BC_JMP:
.long 0x8b1c0abc,0xd1408395,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.private_extern _lj_BC_FUNCF
.no_dead_strip _lj_BC_FUNCF
_lj_BC_FUNCF:
.long 0xd341fea0,0x927f1400,0x913ba000,0x78606ac1
.long 0xf1000421,0x78206ac1,0x5400cfe3
.private_extern _lj_BC_IFUNCF
.no_dead_strip _lj_BC_IFUNCF
_lj_BC_IFUNCF:
.long 0xf9401ae0,0x3859e2a9,0xf85b42b4,0xeb00037f
.long 0x54001668,0xeb090f9f,0x540000e3,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100,0xf83c6a7a,0x9100239c,0x17fffff6
.private_extern _lj_BC_JFUNCF
.no_dead_strip _lj_BC_JFUNCF
_lj_BC_JFUNCF:
.long 0xf9401ae0,0x3859e2a9,0xf85b42b4,0xeb00037f
.long 0x54001468,0xeb090f9f,0x54000063,0xd3507e1c
.long 0x17ffffd0,0xf83c6a7a,0x9100239c,0x17fffffa
.private_extern _lj_BC_FUNCV
.no_dead_strip _lj_BC_FUNCV
_lj_BC_FUNCV:
.private_extern _lj_BC_IFUNCV
.no_dead_strip _lj_BC_IFUNCV
_lj_BC_IFUNCV:
.long 0xf9401ae0,0x92800108,0x8b1c026a,0x8b08bc42
.long 0x8b1c037b,0x91004f88,0xf8008542,0xf85b42b4
.long 0xeb00037f,0xf8008548,0x54001222,0xd100415c
.long 0x3859e2a9,0xaa1303fb,0xaa0a03f3,0xb4000109
.long 0xeb1c037f,0x54000182,0xf9400368,0xd1000529
.long 0xf800877a,0xf8008548,0xb5ffff49,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100,0xd1000529,0xf800855a,0xb4ffff09
.long 0x17fffffd
.private_extern _lj_BC_JFUNCV
.no_dead_strip _lj_BC_JFUNCV
_lj_BC_JFUNCV:
.long 0xd4200000
.private_extern _lj_BC_FUNCC
.no_dead_strip _lj_BC_FUNCC
_lj_BC_FUNCC:
.long 0xf9401443,0x8b1c0361,0xf9401ae0,0x8b1c027c
.long 0xeb00003f,0xa90272f3,0x12800028,0xaa1703e0
.long 0x54000de8,0xb900bac8,0xd63f0060,0xa94226f3
.long 0xf900bad7,0x937d7c1c,0xb900bada,0xf85f8275
.long 0xcb1c013b,0x14000019
.private_extern _lj_BC_FUNCCW
.no_dead_strip _lj_BC_FUNCCW
_lj_BC_FUNCCW:
.long 0xf940aec3,0x8b1c0361,0xf9401ae0,0x8b1c027c
.long 0xeb00003f,0xa90272f3,0xf9401441,0x12800028
.long 0xaa1703e0,0x54000b88,0xb900bac8,0xd63f0060
.long 0xa94226f3,0xf900bad7,0x937d7c1c,0xb900bada
.long 0xf85f8275,0xcb1c013b,0x14000006
.private_extern _lj_vm_returnp
.no_dead_strip _lj_vm_returnp
_lj_vm_returnp:
.long 0x36101d15,0xf85f8235,0x92e00028,0xaa1103f3
.long 0xf81f8f68
.private_extern _lj_vm_returnc
.no_dead_strip _lj_vm_returnc
_lj_vm_returnc:
.long 0xb100239c,0x52800020,0x54000700,0xb90023fc
.long 0xf24006a0,0x54ffcbe0
.private_extern _lj_vm_return
.no_dead_strip _lj_vm_return
_lj_vm_return:
.long 0x927df2b1,0xf100041f,0xcb110271,0x54fffe41
.long 0xf90012f1,0xb9802be1,0x12800028,0xd1004273
.long 0xf100238a,0xb900bac8,0x540000a0,0xf100214a
.long 0xf8408768,0xf8008668,0x54ffffa1,0xeb010f9f
.long 0x54000221,0xf90016f3
.private_extern _lj_vm_leave_cp
.no_dead_strip _lj_vm_leave_cp
_lj_vm_leave_cp:
.long 0xf94003fc,0x52800000,0xf9002afc
.private_extern _lj_vm_leave_unw
.no_dead_strip _lj_vm_leave_unw
_lj_vm_leave_unw:
.long 0xa94b4ff4,0x6d4623e9,0xa94a57f6,0x6d452beb
.long 0xa9495ff8,0x6d4433ed,0xa94867fa,0x6d433bef
.long 0xa9476ffc,0xa94c7bfd,0x910343ff,0xd65f03c0
.long 0x540000ec,0xf9401ae2,0xeb02027f,0x54000102
.long 0xf800867a,0x9100239c,0x17ffffe8,0xb4fffd21
.long 0xcb010f80,0xcb000273,0x17ffffe6,0xf90016f3
.long 0xaa1703e0
bl _lj_state_growstack
.long 0xf94016f3,0xb9802be1,0x17ffffde
.private_extern _lj_vm_unwind_c
.no_dead_strip _lj_vm_unwind_c
_lj_vm_unwind_c:
.long 0x9100001f,0xaa0103e0
.private_extern _lj_vm_unwind_c_eh
.no_dead_strip _lj_vm_unwind_c_eh
_lj_vm_unwind_c_eh:
.long 0xf9400bf7,0x12800028,0xf9400af6,0xb900bac8
.long 0x17ffffdd
.private_extern _lj_vm_unwind_ff
.no_dead_strip _lj_vm_unwind_ff
_lj_vm_unwind_ff:
.long 0x927ef41f
.private_extern _lj_vm_unwind_ff_eh
.no_dead_strip _lj_vm_unwind_ff_eh
_lj_vm_unwind_ff_eh:
.long 0xf9400bf7,0xd2ffff38,0xd2bfff39,0x9280001a
.long 0x5280021c,0xf94012f3,0xf9400af6,0x92d00008
.long 0xd100227b,0xf85f8275,0xf81f8268,0xb900bada
.long 0x17ffffb4
.private_extern _lj_vm_growstack_c
.no_dead_strip _lj_vm_growstack_c
_lj_vm_growstack_c:
.long 0x52800281,0x14000007
.private_extern _lj_vm_growstack_l
.no_dead_strip _lj_vm_growstack_l
_lj_vm_growstack_l:
.long 0x8b1c027c,0xcb13037b,0xaa1703e0,0xa90272f3
.long 0x910012b5,0xd343ff61,0xf90007f5
bl _lj_state_growstack
.long 0xa94272f3,0xf85f0262,0xcb13039c,0x9240b842
.long 0xf9401055,0xb84046b0,0x8b300ec9,0xd3483e1b
.long 0xf947b528,0x8b1b0e7b,0xd61f0100
.private_extern _lj_vm_resume
.no_dead_strip _lj_vm_resume
_lj_vm_resume:
.long 0xd10343ff,0xa90c7bfd,0x910003fd,0xa90b4ff4
.long 0x6d0623e9,0xa90a57f6,0x6d052beb,0xa9095ff8
.long 0x6d0433ed,0xa90867fa,0x6d033bef,0xa9076ffc
.long 0xaa0003f7,0xf9400af6,0xaa0103f3,0xf9000bf7
.long 0x528000b5,0xb9002bff,0x910007e8,0x39402ee9
.long 0xb90027ff,0xf90007f7,0xf90003ff,0xf9002ae8
.long 0x340006a9,0xf900bad7,0xaa1303fb,0xa94202f3
.long 0xd2ffff38,0xd2bfff39,0xf85f8275,0x39002eff
.long 0x9280001a,0xcb13001c,0xf24006a0,0x9100239c
.long 0xb900bada,0xb90023fc,0x54ffbb80,0x17ffff7d
.private_extern _lj_vm_pcall
.no_dead_strip _lj_vm_pcall
_lj_vm_pcall:
.long 0xd10343ff,0xa90c7bfd,0x910003fd,0xa90b4ff4
.long 0x6d0623e9,0xa90a57f6,0x6d052beb,0xa9095ff8
.long 0x6d0433ed,0xa90867fa,0x6d033bef,0xa9076ffc
.long 0x528000b5,0xb90027e3,0x1400000e
.private_extern _lj_vm_call
.no_dead_strip _lj_vm_call
_lj_vm_call:
.long 0xd10343ff,0xa90c7bfd,0x910003fd,0xa90b4ff4
.long 0x6d0623e9,0xa90a57f6,0x6d052beb,0xa9095ff8
.long 0x6d0433ed,0xa90867fa,0x6d033bef,0xa9076ffc
.long 0x52800035,0xf940281c,0xb9002be2,0xaa0003f7
.long 0xf9000be0,0xf9400af6,0xaa0103f3,0xf90007e0
.long 0xf90003fc,0xf9002afd,0xf900bad7,0xa94202f1
.long 0xd2ffff38,0xd2bfff39,0x8b1302b5,0x9280001a
.long 0xcb1102b5,0xcb13001c,0xb900bada
.private_extern _lj_vm_call_dispatch
.no_dead_strip _lj_vm_call_dispatch
_lj_vm_call_dispatch:
.long 0xf85f0262,0x936ffc4f,0xb10025ff,0x9240b842
.long 0x54001ea1
.private_extern _lj_vm_call_dispatch_f
.no_dead_strip _lj_vm_call_dispatch_f
_lj_vm_call_dispatch_f:
.long 0xf81f8275,0xf9401055,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0x8b1b0e7b,0xd61f0100
.private_extern _lj_vm_cpcall
.no_dead_strip _lj_vm_cpcall
_lj_vm_cpcall:
.long 0xd10343ff,0xa90c7bfd,0x910003fd,0xa90b4ff4
.long 0x6d0623e9,0xa90a57f6,0x6d052beb,0xa9095ff8
.long 0x6d0433ed,0xa90867fa,0x6d033bef,0xa9076ffc
.long 0xaa0003f7,0xf9401c1b,0xf9000be0,0xf9400af6
.long 0xf94016f1,0xf90007e0,0xf9402afc,0xcb11037b
.long 0xb9002bfb,0xb90027ff,0xf90003fc,0xf9002afd
.long 0xf900bad7,0xd63f0060,0xaa0003f3,0x528000b5
.long 0xb5fff9d3,0x17ffff36
.private_extern _lj_cont_dispatch
.no_dead_strip _lj_cont_dispatch
_lj_cont_dispatch:
.long 0xf85f0222,0xf85e0260,0xaa1303e3,0xaa1103f3
.long 0x9240b842,0xf100041f,0xf85e8075,0xf9401042
.long 0x8b1c0368,0xf81f811a,0x54000069,0xf85b8054
.long 0xd61f0000,0x5400c0c0,0xd1008063,0xcb13007c
.long 0x140004d4
.private_extern _lj_cont_cat
.no_dead_strip _lj_cont_cat
_lj_cont_cat:
.long 0xb85fc2b0,0xd1008061,0xf9400368,0xf90012f3
.long 0xd3587e11,0xd3483e1b,0x8b110e69,0xeb090029
.long 0x54000080,0xf9000028,0xd343fd22,0x17fffa44
.long 0xf83b7a68,0x14000069
.private_extern _lj_vmeta_tgets1
.no_dead_strip _lj_vmeta_tgets1
_lj_vmeta_tgets1:
.long 0x92800083,0x8b110e61,0x8b03bf83,0x14000004
.private_extern _lj_vmeta_tgets
.no_dead_strip _lj_vmeta_tgets
_lj_vmeta_tgets:
.long 0xf2ffff41,0xf90076c1,0x9103a2c1,0x910063e2
.long 0xf9000fe3,0x14000008
.private_extern _lj_vmeta_tgetb
.no_dead_strip _lj_vmeta_tgetb
_lj_vmeta_tgetb:
.long 0x8b18039c,0x8b110e61,0x910063e2,0xf9000ffc
.long 0x14000003
.private_extern _lj_vmeta_tgetv
.no_dead_strip _lj_vmeta_tgetv
_lj_vmeta_tgetv:
.long 0x8b110e61,0x8b1c0e62,0xf90012f3,0xaa1703e0
.long 0xf90007f5
bl _lj_meta_tget
.long 0xb4000120,0xf9400008,0xf83b7a68,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100,0xd1000a69,0xf94016f3,0x5280021c
.long 0xf85f0262,0xf81e8275,0xcb090275,0x9240b842
.long 0x17ffff96
.private_extern _lj_vmeta_tgetr
.no_dead_strip _lj_vmeta_tgetr
_lj_vmeta_tgetr:
.long 0x93407d21
bl _lj_tab_getinth
.long 0xaa1a03e8,0xb4ff70c0,0xf9400008,0x17fffb84
.private_extern _lj_vmeta_tsets1
.no_dead_strip _lj_vmeta_tsets1
_lj_vmeta_tsets1:
.long 0x92800083,0x8b110e61,0x8b03bf83,0x14000004
.private_extern _lj_vmeta_tsets
.no_dead_strip _lj_vmeta_tsets
_lj_vmeta_tsets:
.long 0xf2ffff41,0xf90076c1,0x9103a2c1,0x910063e2
.long 0xf9000fe3,0x14000008
.private_extern _lj_vmeta_tsetb
.no_dead_strip _lj_vmeta_tsetb
_lj_vmeta_tsetb:
.long 0x8b18039c,0x8b110e61,0x910063e2,0xf9000ffc
.long 0x14000003
.private_extern _lj_vmeta_tsetv
.no_dead_strip _lj_vmeta_tsetv
_lj_vmeta_tsetv:
.long 0x8b110e61,0x8b1c0e62,0xf90012f3,0xaa1703e0
.long 0xf90007f5
bl _lj_meta_tset
.long 0xf87b7a68,0xb4000100,0xf9000008,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0xd3507e1c
.long 0xd61f0100,0xd1000a69,0xf94016f3,0x5280031c
.long 0xf85f0262,0xf9000a68,0xf81e8275,0xcb090275
.long 0x9240b842,0x17ffff69
.private_extern _lj_vmeta_tsetr
.no_dead_strip _lj_vmeta_tsetr
_lj_vmeta_tsetr:
.long 0x93407d22,0xf90012f3,0xaa1703e0,0xf90007f5
bl _lj_tab_setinth
.long 0x17fffc1e
.private_extern _lj_vmeta_comp
.no_dead_strip _lj_vmeta_comp
_lj_vmeta_comp:
.long 0x8b1b0e61,0xd10012b5,0x8b1c0e62,0xf90012f3
.long 0xaa1703e0,0xf90007f5,0x53001e03
bl _lj_meta_comp
.long 0xf100041f,0x54000828,0x794006b1,0x910012b5
.long 0x8b110ab1,0xd1408231,0x9a9132b5
.private_extern _lj_cont_nop
.no_dead_strip _lj_cont_nop
_lj_cont_nop:
.long 0xb84046b0,0x8b300ec9,0xd3483e1b,0xf947b528
.long 0xd3507e1c,0xd61f0100
.private_extern _lj_cont_ra
.no_dead_strip _lj_cont_ra
_lj_cont_ra:
.long 0xb85fc2b0,0xf9400368,0xd3483e09,0xf8297a68
.long 0x17fffff6
.private_extern _lj_cont_condt
.no_dead_strip _lj_cont_condt
_lj_cont_condt:
.long 0xf9400368,0x92e00029,0xeb08013f,0x17ffffed
.private_extern _lj_cont_condf
.no_dead_strip _lj_cont_condf
_lj_cont_condf:
.long 0xf9400368,0x92d00009,0xeb09011f,0x17ffffe9
.private_extern _lj_vmeta_equal
.no_dead_strip _lj_vmeta_equal
_lj_vmeta_equal:
.long 0x9240b842,0xd10012b5,0xf90012f3,0xaa1703e0
.long 0xf90007f5
bl _lj_meta_equal
.long 0x17ffffe0
.private_extern _lj_vmeta_equal_cd
.no_dead_strip _lj_vmeta_equal_cd
_lj_vmeta_equal_cd:
.long 0xd10012b5,0xf90012f3,0xaa1703e0,0xaa1003e1
.long 0xf90007f5
bl _lj_meta_equal_cd
.long 0x17ffffd9
.private_extern _lj_vmeta_istype
.no_dead_strip _lj_vmeta_istype
_lj_vmeta_istype:
.long 0xd10012b5,0xf90012f3,0xaa1703e0,0xaa1b03e1
.long 0xaa1c03e2,0xf90007f5
bl _lj_meta_istype
.long 0x17ffffd8
.private_extern _lj_vmeta_arith_vn
.no_dead_strip _lj_vmeta_arith_vn
_lj_vmeta_arith_vn:
.long 0x8b110e62,0x8b1c0e83,0x14000009
.private_extern _lj_vmeta_arith_nv
.no_dead_strip _lj_vmeta_arith_nv
_lj_vmeta_arith_nv:
.long 0x8b110e63,0x8b1c0e82,0x14000006
.private_extern _lj_vmeta_unm
.no_dead_strip _lj_vmeta_unm
_lj_vmeta_unm:
.long 0x8b1c0e62,0xaa0203e3,0x14000003
.private_extern _lj_vmeta_arith_vv
.no_dead_strip _lj_vmeta_arith_vv
_lj_vmeta_arith_vv:
.long 0x8b110e62,0x8b1c0e63,0x53001e04,0x8b1b0e61
.long 0xf90012f3,0xaa1703e0,0xf90007f5
bl _lj_meta_arith
.long 0xb4fff8c0
.private_extern _lj_vmeta_binop
.no_dead_strip _lj_vmeta_binop
_lj_vmeta_binop:
.long 0xcb130009,0xf81e8015,0x91000935,0xaa0003f3
.long 0x5280021c,0x17ffff0e
.private_extern _lj_vmeta_len
.no_dead_strip _lj_vmeta_len
_lj_vmeta_len:
.long 0x8b1c0e61,0xf90012f3,0xaa1703e0,0xf90007f5
bl _lj_meta_len
.long 0x17fffff5
.private_extern _lj_vmeta_call
.no_dead_strip _lj_vmeta_call
_lj_vmeta_call:
.long 0xaa1703e0,0xf90012f1,0xd1004261,0xf90007f5
.long 0x8b1c0262
bl _lj_meta_call
.long 0xf85f0262,0x9100239c,0x9240b842,0xf81f8275
.long 0xf9401055,0xb84046b0,0x8b300ec9,0xd3483e1b
.long 0xf947b528,0x8b1b0e7b,0xd61f0100
.private_extern _lj_vmeta_callt
.no_dead_strip _lj_vmeta_callt
_lj_vmeta_callt:
.long 0xaa1703e0,0xf90012f3,0xd1004361,0xf90007f5
.long 0x8b1c0362
bl _lj_meta_call
.long 0xf85f0369,0xf85f8275,0x9100239c,0x9240b922
.long 0x17fffbdd
.private_extern _lj_vmeta_for
.no_dead_strip _lj_vmeta_for
_lj_vmeta_for:
.long 0xaa1703e0,0xf90012f3,0xaa1b03e1,0xf90007f5
bl _lj_meta_for
.long 0xb85fc2b0,0x53001e08,0xd3483e1b,0xd3507e1c
.long 0xf101391f,0x54ffa140,0x17fffce5
.private_extern _lj_ff_assert
.no_dead_strip _lj_ff_assert
_lj_ff_assert:
.long 0xf9400260,0xf100239f,0x540079e3,0xf85f8275
.long 0x92d00009,0xeb09001f,0x54007962,0xf81f0260
.long 0xd1002271,0xf100239b,0x9100239c,0xb40032fb
.long 0xf9400a20,0xd100237b,0xf8008620,0xb5ffffbb
.long 0x14000192
.private_extern _lj_ff_type
.no_dead_strip _lj_ff_type
_lj_ff_type:
.long 0xf9400260,0xf100239f,0x540077c3,0x528001a8
.long 0x936ffc0f,0xb10035ff,0xda8f3109,0x91001929
.long 0xf8697840,0x14000185
.private_extern _lj_ff_getmetatable
.no_dead_strip _lj_ff_getmetatable
_lj_ff_getmetatable:
.long 0xf9400260,0xf100239f,0x54007683,0x936ffc0f
.long 0xb10031ff,0xba4d19e4,0x9240b800,0x54000301
.long 0xf9401011,0xaa1a03e0,0xf9411adc,0xb4002f31
.long 0xb9403629,0xb9400f8a,0xf9401622,0x0a0a0129
.long 0x8b090529,0x92800083,0x8b090c42,0x8b03bf83
.long 0xa9402040,0xf9400842,0xeb03011f,0x540000a0
.long 0xb5ffff82,0xaa1103e0,0xf2ffff40,0x14000169
.long 0xeb1a011f,0x54002ce1,0x17fffffb,0x928001a8
.long 0xeb0801ff,0x9a8821ef,0xcb0f0ec9,0xf9412931
.long 0x17ffffe5
.private_extern _lj_ff_setmetatable
.no_dead_strip _lj_ff_setmetatable
_lj_ff_setmetatable:
.long 0xa9400660,0xf100439f,0x540071e3,0x936ffc0f
.long 0xb10031ff,0x9240b809,0x54007161,0xf9401128
.long 0x936ffc2f,0x3940212a,0xb10031ff,0x9240b821
.long 0xfa400900,0x54007081,0xf9001121,0x36102a0a
.long 0xf94022c8,0x121d794a,0xf90022c9,0x3900212a
.long 0xf9000d28,0x1400014a
.private_extern _lj_ff_rawget
.no_dead_strip _lj_ff_rawget
_lj_ff_rawget:
.long 0xf9400261,0xf100439f,0x54006f23,0x936ffc2f
.long 0xb10031ff,0x9240b821,0x54006ea1,0xaa1703e0
.long 0x91002262
bl _lj_tab_get
.long 0xf9400000,0x1400013e
.private_extern _lj_ff_tonumber
.no_dead_strip _lj_ff_tonumber
_lj_ff_tonumber:
.long 0xf9400260,0xf100239f,0x54006da1,0xeb40833f
.long 0x54006d63,0x14000138
.private_extern _lj_ff_tostring
.no_dead_strip _lj_ff_tostring
_lj_ff_tostring:
.long 0xf9400260,0xf100239f,0x54006ce3,0x936ffc0f
.long 0xb10015ff,0x54002640,0xf94162c9,0xf90012f3
.long 0xb10039ff,0xfa409920,0xf90007f5,0x54006bc1
.long 0xa94106c0,0xeb01001f,0x5400004b,0x94000384
.long 0xaa1703e0,0xaa1303e1
bl _lj_strfmt_number
.long 0x92800089,0xf94012f3,0x8b09bc00,0x14000121
.private_extern _lj_ff_next
.no_dead_strip _lj_ff_next
_lj_ff_next:
.long 0xf9400260,0xf100239f,0x54006a03,0x936ffc0f
.long 0xb10031ff,0x9240b801,0x54006981,0xf83c6a7a
.long 0xf85f8275,0xa9024ef3,0xaa1703e0,0x91002262
.long 0xf90007f5
bl _lj_tab_next
.long 0xf81f027a,0xb4002260,0xa9408660,0x5280031c
.long 0xa93f0660,0x14000110
.private_extern _lj_ff_pairs
.no_dead_strip _lj_ff_pairs
_lj_ff_pairs:
.long 0xf9400260,0xf100239f,0x54006783,0x936ffc0f
.long 0xb10031ff,0x9240b809,0x54006701,0xf9401843
.long 0xf85f8275,0x5280041c,0xa93fea60,0xf81f0263
.long 0x14000103
.private_extern _lj_ff_ipairs_aux
.no_dead_strip _lj_ff_ipairs_aux
_lj_ff_ipairs_aux:
.long 0xa9400660,0xf100439f,0x540065e3,0x936ffc0f
.long 0xb10031ff,0x9240b800,0x54006561,0xeb41833f
.long 0x54006521,0xb9403009,0xf9400802,0xb9403408
.long 0x11000421,0x6b09003f,0xf85f8275,0x8b18002a
.long 0x5280011c,0xf81f026a,0x540000e2,0xf8617848
.long 0x52800309,0xeb1a011f,0xf81f8268,0x9a89039c
.long 0x140000ea,0x34001d28
bl _lj_tab_getinth
.long 0xb4001ce0,0xf9400008,0x17fffff7
.private_extern _lj_ff_ipairs
.no_dead_strip _lj_ff_ipairs
_lj_ff_ipairs:
.long 0xf9400260,0xf100239f,0x54006223,0x936ffc0f
.long 0xb10031ff,0x9240b809,0x540061a1,0xf9401843
.long 0xf85f8275,0x5280041c,0xa93fe260,0xf81f0263
.long 0x140000d8
.private_extern _lj_ff_pcall
.no_dead_strip _lj_ff_pcall
_lj_ff_pcall:
.long 0x394246c8,0xf100239c,0x54006083,0xaa1303f1
.long 0x91004273,0x53041108,0x91005915,0x54ffc1a0
.long 0x8b1c026a,0xf85f0148,0xf81f8d48,0xeb13015f
.long 0x54ffffa1,0x17fffe07
.private_extern _lj_ff_xpcall
.no_dead_strip _lj_ff_xpcall
_lj_ff_xpcall:
.long 0xa9400660,0x394246c8,0xf1004389,0x54005ea3
.long 0xaa1303f1,0x936ffc2f,0x53041108,0xb10025ff
.long 0x91007915,0x54005de1,0xaa0903fc,0x91006273
.long 0xa9000221,0xb4ffbf3c,0x17ffffec
.private_extern _lj_ff_coroutine_resume
.no_dead_strip _lj_ff_coroutine_resume
_lj_ff_coroutine_resume:
.long 0xf9400260,0xf100239f,0x54005ce3,0x936ffc0f
.long 0xb1001dff,0x9240b800,0x54005c61,0xf85f8275
.long 0xf90012f3,0xa9420411,0x39402c09,0x8b090028
.long 0xf90007f5,0xeb11011f,0x54005b60,0xf100053f
.long 0x91002028,0x9a882021,0xf9401803,0x8b1c0022
.long 0xf9402811,0xfa439042,0xfa409a22,0x54005a48
.long 0xd1002042,0x91002273,0xd100239c,0xf9001402
.long 0xf90016f3,0xb40000dc,0xf8716a68,0xeb1c023f
.long 0xf8316828,0x91002231,0x54ffff81,0x52800002
.long 0xaa0003fb,0x52800003,0x97fffd7b,0xa9420f62
.long 0xf100041f,0xf94012f3,0xf900bad7,0xb900bada
.long 0x54000308,0xcb02007c,0xf9401ae0,0x8b1c0261
.long 0xb400017c,0xeb00003f,0x52800011,0x540002e8
.long 0xd1002383,0xf9001762,0xf8716848,0xeb03023f
.long 0xf8316a68,0x91002231,0x54ffff81,0x92e00029
.long 0x9100439c,0xf81f8269,0xd100227b,0xf24006a0
.long 0xf90007f5,0xb90023fc,0x54ff6c20,0x17fffd02
.long 0xf85f8c68,0x92d00009,0x5280031c,0xf9001763
.long 0xf9000268,0x17fffff4,0xaa1703e0,0xd343ff81
bl _lj_state_growstack
.long 0x52800000,0x17ffffd9
.private_extern _lj_ff_coroutine_wrap_aux
.no_dead_strip _lj_ff_coroutine_wrap_aux
_lj_ff_coroutine_wrap_aux:
.long 0xf9401840,0x9240b800,0xf85f8275,0xf90012f3
.long 0xa9420411,0x39402c09,0x8b090028,0xf90007f5
.long 0xeb11011f,0x54005220,0xf100053f,0x91002028
.long 0x9a882021,0xf9401803,0x8b1c0022,0xf9402811
.long 0xfa439042,0xfa409a22,0x54005108,0xf9001402
.long 0xf90016f3,0xb40000dc,0xf8716a68,0xeb1c023f
.long 0xf8316828,0x91002231,0x54ffff81,0x52800002
.long 0xaa0003fb,0x52800003,0x97fffd34,0xa9420f62
.long 0xf100041f,0xf94012f3,0xf900bad7,0xb900bada
.long 0x540002c8,0xcb02007c,0xf9401ae0,0x8b1c0261
.long 0xb400017c,0xeb00003f,0x52800011,0x54000248
.long 0xd1002383,0xf9001762,0xf8716848,0xeb03023f
.long 0xf8316a68,0x91002231,0x54ffff81,0xaa1303fb
.long 0x9100239c,0xf24006a0,0xf90007f5,0xb90023fc
.long 0x54ff6380,0x17fffcbd,0xaa1703e0,0xaa1b03e1
bl _lj_ffh_coroutine_wrap_err
.long 0xaa1703e0,0xd343ff81
bl _lj_state_growstack
.long 0x52800000,0x17ffffde
.private_extern _lj_ff_coroutine_yield
.no_dead_strip _lj_ff_coroutine_yield
_lj_ff_coroutine_yield:
.long 0xf9402ae8,0x8b1c0269,0x52800020,0xa90226f3
.long 0x36004a88,0xf9002aff,0x39002ee0,0x17fffcc2
.private_extern _lj_ff_math_floor
.no_dead_strip _lj_ff_math_floor
_lj_ff_math_floor:
.long 0xf9400260,0xf100239f,0xfd400260,0x540049a3
.long 0xeb40833f,0x54000320,0x54004943,0x1e654000
.long 0x14000034
.private_extern _lj_ff_math_ceil
.no_dead_strip _lj_ff_math_ceil
_lj_ff_math_ceil:
.long 0xf9400260,0xf100239f,0xfd400260,0x54004883
.long 0xeb40833f,0x54000200,0x54004823,0x1e64c000
.long 0x1400002b
.private_extern _lj_ff_math_abs
.no_dead_strip _lj_ff_math_abs
_lj_ff_math_abs:
.long 0xf9400260,0xf100239f,0x54004783,0xeb40833f
.long 0x54004743,0x9240f800,0x540000c1,0x4a807c01
.long 0xd2e83c02,0x6b807c20,0x8b180000,0x9a825000
.private_extern _lj_fff_restv
.no_dead_strip _lj_fff_restv
_lj_fff_restv:
.long 0xf85f8275,0xf81f0260
.private_extern _lj_fff_res1
.no_dead_strip _lj_fff_res1
_lj_fff_res1:
.long 0x5280021c
.private_extern _lj_fff_res
.no_dead_strip _lj_fff_res
_lj_fff_res:
.long 0xf24006a0,0xb90023fc,0xd100427b,0x54ff9101
.long 0xb85fc2b0,0xd3587e11,0xeb110f9f,0x54000123
.long 0xd3483e09,0xcb090f73,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0xd3507e1c,0xd61f0100
.long 0x8b1c0369,0x9100239c,0xf81f813a,0x17fffff3
.private_extern _lj_ff_math_sqrt
.no_dead_strip _lj_ff_math_sqrt
_lj_ff_math_sqrt:
.long 0xf9400260,0xf100239f,0xfd400260,0x54004303
.long 0xeb40833f,0x540042c9,0x1e61c000
.private_extern _lj_fff_resn
.no_dead_strip _lj_fff_resn
_lj_fff_resn:
.long 0xf85f8275,0xfc1f0260,0x17ffffe2
.private_extern _lj_ff_math_log
.no_dead_strip _lj_ff_math_log
_lj_ff_math_log:
.long 0xf9400260,0xf100239f,0xfd400260,0x540041c1
.long 0xeb40833f,0x54004189
bl _log
.long 0x17fffff6
.private_extern _lj_ff_math_log10
.no_dead_strip _lj_ff_math_log10
_lj_ff_math_log10:
.long 0xf9400260,0xf100239f,0xfd400260,0x540040c3
.long 0xeb40833f,0x54004089
bl _log10
.long 0x17ffffee
.private_extern _lj_ff_math_exp
.no_dead_strip _lj_ff_math_exp
_lj_ff_math_exp:
.long 0xf9400260,0xf100239f,0xfd400260,0x54003fc3
.long 0xeb40833f,0x54003f89
bl _exp
.long 0x17ffffe6
.private_extern _lj_ff_math_sin
.no_dead_strip _lj_ff_math_sin
_lj_ff_math_sin:
.long 0xf9400260,0xf100239f,0xfd400260,0x54003ec3
.long 0xeb40833f,0x54003e89
bl _sin
.long 0x17ffffde
.private_extern _lj_ff_math_cos
.no_dead_strip _lj_ff_math_cos
_lj_ff_math_cos:
.long 0xf9400260,0xf100239f,0xfd400260,0x54003dc3
.long 0xeb40833f,0x54003d89
bl _cos
.long 0x17ffffd6
.private_extern _lj_ff_math_tan
.no_dead_strip _lj_ff_math_tan
_lj_ff_math_tan:
.long 0xf9400260,0xf100239f,0xfd400260,0x54003cc3
.long 0xeb40833f,0x54003c89
bl _tan
.long 0x17ffffce
.private_extern _lj_ff_math_asin
.no_dead_strip _lj_ff_math_asin
_lj_ff_math_asin:
.long 0xf9400260,0xf100239f,0xfd400260,0x54003bc3
.long 0xeb40833f,0x54003b89
bl _asin
.long 0x17ffffc6
.private_extern _lj_ff_math_acos
.no_dead_strip _lj_ff_math_acos
_lj_ff_math_acos:
.long 0xf9400260,0xf100239f,0xfd400260,0x54003ac3
.long 0xeb40833f,0x54003a89
bl _acos
.long 0x17ffffbe
.private_extern _lj_ff_math_atan
.no_dead_strip _lj_ff_math_atan
_lj_ff_math_atan:
.long 0xf9400260,0xf100239f,0xfd400260,0x540039c3
.long 0xeb40833f,0x54003989
bl _atan
.long 0x17ffffb6
.private_extern _lj_ff_math_sinh
.no_dead_strip _lj_ff_math_sinh
_lj_ff_math_sinh:
.long 0xf9400260,0xf100239f,0xfd400260,0x540038c3
.long 0xeb40833f,0x54003889
bl _sinh
.long 0x17ffffae
.private_extern _lj_ff_math_cosh
.no_dead_strip _lj_ff_math_cosh
_lj_ff_math_cosh:
.long 0xf9400260,0xf100239f,0xfd400260,0x540037c3
.long 0xeb40833f,0x54003789
bl _cosh
.long 0x17ffffa6
.private_extern _lj_ff_math_tanh
.no_dead_strip _lj_ff_math_tanh
_lj_ff_math_tanh:
.long 0xf9400260,0xf100239f,0xfd400260,0x540036c3
.long 0xeb40833f,0x54003689
bl _tanh
.long 0x17ffff9e
.private_extern _lj_ff_math_pow
.no_dead_strip _lj_ff_math_pow
_lj_ff_math_pow:
.long 0xa9400660,0xf100439f,0x6d400660,0x540035c3
.long 0xeb40833f,0x54003589,0xeb41833f,0x54003549
bl _pow
.long 0x17ffff94
.private_extern _lj_ff_math_atan2
.no_dead_strip _lj_ff_math_atan2
_lj_ff_math_atan2:
.long 0xa9400660,0xf100439f,0x6d400660,0x54003483
.long 0xeb40833f,0x54003449,0xeb41833f,0x54003409
bl _atan2
.long 0x17ffff8a
.private_extern _lj_ff_math_fmod
.no_dead_strip _lj_ff_math_fmod
_lj_ff_math_fmod:
.long 0xa9400660,0xf100439f,0x6d400660,0x54003343
.long 0xeb40833f,0x54003309,0xeb41833f,0x540032c9
bl _fmod
.long 0x17ffff80
.private_extern _lj_ff_math_ldexp
.no_dead_strip _lj_ff_math_ldexp
_lj_ff_math_ldexp:
.long 0xa9400660,0xf100439f,0x54003223,0xfd400260
.long 0xeb40833f,0x540031c9,0xeb41833f,0x54003181
.long 0x93407c20
bl _ldexp
.long 0x17ffff75
.private_extern _lj_ff_math_frexp
.no_dead_strip _lj_ff_math_frexp
_lj_ff_math_frexp:
.long 0xf9400260,0xf100239f,0xfd400260,0x540030a3
.long 0xeb40833f,0x54003069,0x910063e0
bl _frexp
.long 0xb9401be1,0xf85f8275,0xfc1f0260,0x5280031c
.long 0x8b180021,0xf81f8261,0x17ffff4b
.private_extern _lj_ff_math_modf
.no_dead_strip _lj_ff_math_modf
_lj_ff_math_modf:
.long 0xf9400260,0xf100239f,0xfd400260,0x54002ec3
.long 0xeb40833f,0x54002e89,0xd1004260,0xf85f8275
bl _modf
.long 0x5280031c,0xfc1f8260,0x17ffff3f
.private_extern _lj_ff_math_min
.no_dead_strip _lj_ff_math_min
_lj_ff_math_min:
.long 0xf9400260,0xf100239f,0x54002d63,0x8b1c0271
.long 0x9100227b,0xeb40833f,0x540001c1,0xf9400361
.long 0xeb11037f,0x54ffe642,0xeb41833f,0x540000a1
.long 0x6b01001f,0x9100237b,0x9a80c020,0x17fffff8
.long 0x1e620000,0x54002b83,0xfd400361,0x14000009
.long 0xfd400260,0x54002b03,0xf9400361,0xfd400361
.long 0xeb11037f,0x54ffe802,0xeb41833f,0x540000a9
.long 0x1e612000,0x9100237b,0x1e605c20,0x17fffff7
.long 0x1e620021,0x54002983,0x17fffffa
.private_extern _lj_ff_math_max
.no_dead_strip _lj_ff_math_max
_lj_ff_math_max:
.long 0xf9400260,0xf100239f,0x54002903,0x8b1c0271
.long 0x9100227b,0xeb40833f,0x540001c1,0xf9400361
.long 0xeb11037f,0x54ffe1e2,0xeb41833f,0x540000a1
.long 0x6b01001f,0x9100237b,0x9a80b020,0x17fffff8
.long 0x1e620000,0x54002723,0xfd400361,0x14000009
.long 0xfd400260,0x540026a3,0xf9400361,0xfd400361
.long 0xeb11037f,0x54ffe3a2,0xeb41833f,0x540000a9
.long 0x1e612000,0x9100237b,0x1e60dc20,0x17fffff7
.long 0x1e620021,0x54002523,0x17fffffa
.private_extern _lj_ff_string_byte
.no_dead_strip _lj_ff_string_byte
_lj_ff_string_byte:
.long 0xa97f8275,0xf100239f,0x936ffc0f,0xba4509e0
.long 0x9240b800,0x54002441,0x39406008,0xb9401402
.long 0x8b180108,0xf81f0268,0x5280011c,0xb4ffdda2
.long 0x17fffeeb
.private_extern _lj_ff_string_char
.no_dead_strip _lj_ff_string_char
_lj_ff_string_char:
.long 0xa94106c0,0xeb01001f,0x5400004b,0x94000141
.long 0xa97f8275,0x7103fc1f,0xfa489b80,0x54002261
.long 0xeb40833f,0x54002221,0x52800022,0xaa1303e1
.private_extern _lj_fff_newstr
.no_dead_strip _lj_fff_newstr
_lj_fff_newstr:
.long 0xf90012f3,0xaa1703e0,0xf90007f5
bl _lj_str_new
.private_extern _lj_fff_resstr
.no_dead_strip _lj_fff_resstr
_lj_fff_resstr:
.long 0xf94012f3,0x92800089,0x8b09bc00,0x17fffed5
.private_extern _lj_ff_string_sub
.no_dead_strip _lj_ff_string_sub
_lj_ff_string_sub:
.long 0xa94106c0,0xeb01001f,0x5400004b,0x9400012d
.long 0xf9400260,0xf9400a62,0xf100439f,0x92800011
.long 0x540000a0,0x54001fa3,0xeb42833f,0x54001f61
.long 0x93407c51,0xf9400661,0x936ffc0f,0xb10015ff
.long 0x9240b800,0x54001ea1,0xb9401409,0xeb41833f
.long 0x54001e41,0x93407c21,0x8b09022a,0xf100023f
.long 0x8b090028,0x9a8aa631,0xf100003f,0x9a88a421
.long 0xf100023f,0x9a9fa231,0xf100043f,0x9a9fa421
.long 0xeb09023f,0x9a89d231,0x91005c00,0xeb010222
.long 0x8b010001,0x91000442,0x54fffa4a,0x9101e2c0
.long 0x92800089,0x8b09bc00,0x17fffeaa
.private_extern _lj_ff_string_reverse
.no_dead_strip _lj_ff_string_reverse
_lj_ff_string_reverse:
.long 0xa94106c0,0xeb01001f,0x5400004b,0x94000102
.long 0xf9400261,0xf100239f,0x936ffc2f,0xba4529e0
.long 0x9240b821,0x54001a41,0xf9406ec8,0x910322c0
.long 0xf90012f3,0xf90007f5,0xf90072d7,0xf90066c8
bl _lj_buf_putstr_reverse
bl _lj_buf_tostr
.long 0x17ffffbf
.private_extern _lj_ff_string_lower
.no_dead_strip _lj_ff_string_lower
_lj_ff_string_lower:
.long 0xa94106c0,0xeb01001f,0x5400004b,0x940000ef
.long 0xf9400261,0xf100239f,0x936ffc2f,0xba4529e0
.long 0x9240b821,0x540017e1,0xf9406ec8,0x910322c0
.long 0xf90012f3,0xf90007f5,0xf90072d7,0xf90066c8
bl _lj_buf_putstr_lower
bl _lj_buf_tostr
.long 0x17ffffac
.private_extern _lj_ff_string_upper
.no_dead_strip _lj_ff_string_upper
_lj_ff_string_upper:
.long 0xa94106c0,0xeb01001f,0x5400004b,0x940000dc
.long 0xf9400261,0xf100239f,0x936ffc2f,0xba4529e0
.long 0x9240b821,0x54001581,0xf9406ec8,0x910322c0
.long 0xf90012f3,0xf90007f5,0xf90072d7,0xf90066c8
bl _lj_buf_putstr_upper
bl _lj_buf_tostr
.long 0x17ffff99
.private_extern _lj_vm_tobit_fb
.no_dead_strip _lj_vm_tobit_fb
_lj_vm_tobit_fb:
.long 0x54001449,0x8b000001,0x52808682,0xcb41d442
.long 0xf100d45f,0x540000e8,0x9240d021,0xb24b0021
.long 0xf100001f,0x9ac22421,0x5a815420,0xd61f03c0
.long 0x52800000,0xd61f03c0
.private_extern _lj_ff_bit_band
.no_dead_strip _lj_ff_bit_band
_lj_ff_bit_band:
.long 0xf9400260,0xf100239f,0x54001243,0x1000007e
.long 0xeb40833f,0x54fffda1,0x5280011b,0x2a0003e8
.long 0x100000fe,0xf87b6a60,0xeb1c037f,0x9100237b
.long 0x540005ca,0xeb40833f,0x54fffc81,0x0a000108
.long 0x17fffff9
.private_extern _lj_ff_bit_bor
.no_dead_strip _lj_ff_bit_bor
_lj_ff_bit_bor:
.long 0xf9400260,0xf100239f,0x54001023,0x1000007e
.long 0xeb40833f,0x54fffb81,0x5280011b,0x2a0003e8
.long 0x100000fe,0xf87b6a60,0xeb1c037f,0x9100237b
.long 0x540003aa,0xeb40833f,0x54fffa61,0x2a000108
.long 0x17fffff9
.private_extern _lj_ff_bit_bxor
.no_dead_strip _lj_ff_bit_bxor
_lj_ff_bit_bxor:
.long 0xf9400260,0xf100239f,0x54000e03,0x1000007e
.long 0xeb40833f,0x54fff961,0x5280011b,0x2a0003e8
.long 0x100000fe,0xf87b6a60,0xeb1c037f,0x9100237b
.long 0x5400018a,0xeb40833f,0x54fff841,0x4a000108
.long 0x17fffff9
.private_extern _lj_ff_bit_tobit
.no_dead_strip _lj_ff_bit_tobit
_lj_ff_bit_tobit:
.long 0xf9400260,0xf100239f,0x54000be3,0x1000007e
.long 0xeb40833f,0x54fff741,0x2a0003e8,0x8b180100
.long 0x17fffe27
.private_extern _lj_ff_bit_bswap
.no_dead_strip _lj_ff_bit_bswap
_lj_ff_bit_bswap:
.long 0xf9400260,0xf100239f,0x54000ac3,0x1000007e
.long 0xeb40833f,0x54fff621,0x5ac00808,0x8b180100
.long 0x17fffe1e
.private_extern _lj_ff_bit_bnot
.no_dead_strip _lj_ff_bit_bnot
_lj_ff_bit_bnot:
.long 0xf9400260,0xf100239f,0x540009a3,0x1000007e
.long 0xeb40833f,0x54fff501,0x2a2003e8,0x8b180100
.long 0x17fffe15
.private_extern _lj_ff_bit_lshift
.no_dead_strip _lj_ff_bit_lshift
_lj_ff_bit_lshift:
.long 0xa9400268,0xf100439f,0x54000883,0x1000007e
.long 0xeb40833f,0x54fff3e1,0xaa0003e9,0xaa0803e0
.long 0x1000007e,0xeb40833f,0x54fff341,0x1ac92008
.long 0x8b180100,0x17fffe07
.private_extern _lj_ff_bit_rshift
.no_dead_strip _lj_ff_bit_rshift
_lj_ff_bit_rshift:
.long 0xa9400268,0xf100439f,0x540006c3,0x1000007e
.long 0xeb40833f,0x54fff221,0xaa0003e9,0xaa0803e0
.long 0x1000007e,0xeb40833f,0x54fff181,0x1ac92408
.long 0x8b180100,0x17fffdf9
.private_extern _lj_ff_bit_arshift
.no_dead_strip _lj_ff_bit_arshift
_lj_ff_bit_arshift:
.long 0xa9400268,0xf100439f,0x54000503,0x1000007e
.long 0xeb40833f,0x54fff061,0xaa0003e9,0xaa0803e0
.long 0x1000007e,0xeb40833f,0x54ffefc1,0x1ac92808
.long 0x8b180100,0x17fffdeb
.private_extern _lj_ff_bit_rol
.no_dead_strip _lj_ff_bit_rol
_lj_ff_bit_rol:
.long 0xa9400268,0xf100439f,0x54000343,0x1000007e
.long 0xeb40833f,0x54ffeea1,0xcb0003e9,0xaa0803e0
.long 0x1000007e,0xeb40833f,0x54ffee01,0x1ac92c08
.long 0x8b180100,0x17fffddd
.private_extern _lj_ff_bit_ror
.no_dead_strip _lj_ff_bit_ror
_lj_ff_bit_ror:
.long 0xa9400268,0xf100439f,0x54000183,0x1000007e
.long 0xeb40833f,0x54ffece1,0xaa0003e9,0xaa0803e0
.long 0x1000007e,0xeb40833f,0x54ffec41,0x1ac92c08
.long 0x8b180100,0x17fffdcf
.private_extern _lj_fff_fallback
.no_dead_strip _lj_fff_fallback
_lj_fff_fallback:
.long 0xa97f5662,0xf9401aea,0x8b1c0269,0xa90226f3
.long 0x9240b842,0x91028129,0xf9401442,0xf90007f5
.long 0xeb0a013f,0xaa1703e0,0x54000368,0xd63f0040
.long 0xf94012f3,0x7100001f,0xd37df01c,0xd100427b
.long 0x54ffb82c,0xf94016e0,0xf85f0262,0xcb13001c
.long 0x54000121,0x9240b842,0xf9401055,0xb84046b0
.long 0x8b300ec9,0xd3483e1b,0xf947b528,0x8b1b0e7b
.long 0xd61f0100
.private_extern _lj_vm_call_tail
.no_dead_strip _lj_vm_call_tail
_lj_vm_call_tail:
.long 0xf24006a8,0x927df2a9,0x54000081,0x385fd2bb
.long 0xd37df37b,0x91004369,0xcb090271,0x17fffaea
.long 0x52800281
bl _lj_state_growstack
.long 0xf94012f3,0xeb00001f,0x17ffffe8
.private_extern _lj_fff_gcstep
.no_dead_strip _lj_fff_gcstep
_lj_fff_gcstep:
.long 0x8b1c0261,0xaa1e03fb,0xa90206f3,0xf90007f5
.long 0xaa1703e0
bl _lj_gc_step
.long 0xa94206f3,0xf85f0262,0xaa1b03fe,0xcb13003c
.long 0x9240b842,0xd65f03c0
.private_extern _lj_vm_record
.no_dead_strip _lj_vm_record
_lj_vm_record:
.long 0x394246c0,0xf27b001f,0x54000161,0xb9414ac1
.long 0xf27c001f,0x54000261,0x51000421,0xf27e041f
.long 0x54000200,0xb9014ac1,0x1400000e
.private_extern _lj_vm_rethook
.no_dead_strip _lj_vm_rethook
_lj_vm_rethook:
.long 0x394246ca,0x3620018a,0xf94a1d28,0xd61f0100
.private_extern _lj_vm_inshook
.no_dead_strip _lj_vm_inshook
_lj_vm_inshook:
.long 0x394246ca,0xb9414acb,0x3727ff8a,0x721e055f
.long 0x54ffff40,0x5100056b,0xb9014acb,0x3400004b
.long 0x3617feca,0xaa1703e0,0xf90012f3,0xaa1503e1
bl _lj_dispatch_ins
.long 0xf94012f3,0xb85fc2b0,0x8b300ec9,0xd3483e1b
.long 0xf94a1d28,0xd3507e1c,0xd61f0100
.private_extern _lj_cont_hook
.no_dead_strip _lj_cont_hook
_lj_cont_hook:
.long 0xf85d8060,0x910012b5,0xb90023e0,0x17fffff7
.private_extern _lj_vm_hotloop
.no_dead_strip _lj_vm_hotloop
_lj_vm_hotloop:
.long 0xf85f0262,0x910b62c0,0x9240b842,0xf90007f5
.long 0xf9401042,0xaa1503e1,0xf901aed7,0x385a3042
.long 0xf90012f3,0x8b020e62,0xf90016e2
bl _lj_trace_hot
.long 0x17ffffe9
.private_extern _lj_vm_callhook
.no_dead_strip _lj_vm_callhook
_lj_vm_callhook:
.long 0xaa1503e1,0x14000002
.private_extern _lj_vm_hotcall
.no_dead_strip _lj_vm_hotcall
_lj_vm_hotcall:
.long 0xb24002a1,0x8b1c0269,0xf90007f5,0xaa1703e0
.long 0xcb13037b,0xa90226f3
bl _lj_dispatch_call
.long 0xa94226f3,0xf90007ff,0xf85f0262,0x8b1b027b
.long 0xcb13013c,0xb85fc2b0,0x9240b842,0xd61f0000
.private_extern _lj_cont_stitch
.no_dead_strip _lj_cont_stitch
_lj_cont_stitch:
.long 0xb94023f1,0xb85fc2b0,0xf85d8062,0xf1002231
.long 0xd3483e1c,0x9240b842,0x540000e0,0xf9400360
.long 0x9100237b,0xf1002231,0xf83c7a60,0x9100079c
.long 0x54ffff61,0xd3483e1b,0xd3587e11,0x8b11037b
.long 0xeb1c037f,0x54000228,0x7940d05b,0x7940d45c
.long 0x6b1b039f,0x54ff6600,0x7100039f,0x54ff2881
.long 0x5281d180,0xb8206adb,0x52806b00,0xf8206ad7
.long 0xf90012f3,0x910b62c0,0xaa1503e1
bl _lj_dispatch_stitch
.long 0xf94012f3,0x17fffb24,0xf83c7a7a,0x9100079c
.long 0x17ffffec
.private_extern _lj_vm_profhook
.no_dead_strip _lj_vm_profhook
_lj_vm_profhook:
.long 0xaa1703e0,0xf90012f3,0xaa1503e1
bl _lj_dispatch_profile
.long 0xf94012f3,0xd10012b5,0x17fffb1a
.private_extern _lj_vm_exit_handler
.no_dead_strip _lj_vm_exit_handler
_lj_vm_exit_handler:
.long 0xd10803ff,0x6d0007e0,0xa91007e0,0x6d010fe2
.long 0xa9110fe2,0x6d0217e4,0xa91217e4,0x6d031fe6
.long 0xa9131fe6,0x6d0427e8,0xa91427e8,0x6d052fea
.long 0xa9152fea,0x6d0637ec,0xa91637ec,0x6d073fee
.long 0xa9173fee,0x6d0847f0,0xa91847f0,0x6d094ff2
.long 0xa9194ff2,0x6d0a57f4,0xa91a57f4,0x6d0b5ff6
.long 0xa91b5ff6,0x6d0c67f8,0xa91c67f8,0x6d0d6ffa
.long 0xa91d6ffa,0x6d0e77fc,0xa91e77fc,0x6d0f7ffe
.long 0xf94103e0,0x910803e2,0x12800063,0xa91f0bff
.long 0xcb1e0000,0xf940bad7,0xd342fc00,0xf940bed3
.long 0xd1000800,0xb94003c1,0xb900bac3,0xf90012f3
.long 0x53055021,0xb90e8ec0,0xb90e8ac1,0xf901aed7
.long 0xf900bedf,0x910b62c0,0x910003e1
bl _lj_trace_exit
.long 0xf9402ae1,0xf94012f3,0x927ef43f,0xf94007f5
.long 0xf9000bf7,0x14000002
.private_extern _lj_vm_exit_interp
.no_dead_strip _lj_vm_exit_interp
_lj_vm_exit_interp:
.long 0xf9400bf7,0x7100001f,0x5400054b,0xd37df01c
.long 0xf85f0261,0xd2ffff38,0xd2bfff39,0x9280001a
.long 0x9240b821,0xb90023fc,0xf90012f3,0xf9401021
.long 0xf900bedf,0x12800003,0xf85b8034,0x394002b1
.long 0xb84046b0,0xb900bac3,0x7101863f,0x8b300ec9
.long 0x540001a2,0x7101663f,0x8b310ec8,0xf947b511
.long 0xd3483e1b,0xd350fe08,0x9a9c311c,0x540000a3
.long 0xf85f0262,0xd100239c,0x8b1b0e7b,0x9240b842
.long 0xd61f0220,0xf85f8260,0xf2400401,0x54fffe41
.long 0xb85fc002,0xd3483c40,0xcb000e61,0xf85e0022
.long 0x9240b842,0xf9401042,0xf85b8054,0x17ffffea
.long 0x4b0003e1,0xaa1703e0
bl _lj_err_trace
.private_extern _lj_vm_modi
.no_dead_strip _lj_vm_modi
_lj_vm_modi:
.long 0x4a010003,0x7100007f,0x4a807c02,0x4a817c23
.long 0x4b807c42,0x4b817c63,0x1ac30840,0x1b038800
.long 0x7a404804,0x4b030002,0x1a820000,0x4a010002
.long 0x7100005f,0x5a805400,0xd65f03c0
.private_extern _lj_vm_ffi_callback
.no_dead_strip _lj_vm_ffi_callback
_lj_vm_ffi_callback:
.long 0xd10343ff,0xa90c7bfd,0x910003fd,0xa90b4ff4
.long 0x6d0623e9,0xa90a57f6,0x6d052beb,0xa9095ff8
.long 0x6d0433ed,0xa90867fa,0x6d033bef,0xa9076ffc
.long 0xf940c155,0xaa0a03f6,0x910343ea,0xb900d2a9
.long 0xa90706a0,0x6d0306a0,0xa9080ea2,0x6d040ea2
.long 0xa90916a4,0x6d0516a4,0xa90a1ea6,0x6d061ea6
.long 0xf9005aaa,0xaa1503e0,0xf90007f5,0x910003e1
bl _lj_ccallback_enter
.long 0xa9427013,0xd2ffff38,0xd2bfff39,0x9280001a
.long 0xaa0003f7,0xf85f0262,0xcb13039c,0xb900bada
.long 0x9240b842,0xf9401055,0xb84046b0,0x8b300ec9
.long 0xd3483e1b,0xf947b528,0x8b1b0e7b,0xd61f0100
.private_extern _lj_cont_ffi_callback
.no_dead_strip _lj_cont_ffi_callback
_lj_cont_ffi_callback:
.long 0xf940c2d5,0xa9020ef3,0xf9000ab7,0xaa1503e0
.long 0xaa1b03e1
bl _lj_ccallback_leave
.long 0xa94706a0,0x6d4306a0,0x17fff91d
.private_extern _lj_vm_ffi_call
.no_dead_strip _lj_vm_ffi_call
_lj_vm_ffi_call:
.long 0xa9be4ff4,0xa9017bfd,0x910003fd,0xaa0003f3
.long 0xb9400808,0x39403269,0x9102626a,0xf1000529
.long 0xf940026b,0xcb2863bf,0x540000a4,0xf8697948
.long 0xf8297be8,0xf1000529,0x54ffffa5,0xa9458660
.long 0x6d418660,0xa9468e62,0x6d428e62,0xa9479664
.long 0x6d439664,0xa9489e66,0x6d449e66,0xf9400a68
.long 0xd63f0160,0x910003bf,0xa9058660,0x6d018660
.long 0x6d028e62,0xa9417bfd,0xa8c24ff4,0xd65f03c0
.cstring
.ascii "DynASM 1.5.0\0"
.section __TEXT,__eh_frame,coalesced,no_toc+strip_static_syms+live_support
EH_frame1:
.set L$set$x,LECIEX-LSCIEX
.long L$set$x
LSCIEX:
.long 0
.byte 0x1
.ascii "zPR\0"
.byte 0x1
.byte 128-8
.byte 30
.byte 6
.byte 0x9b
.long _lj_err_unwind_dwarf@GOTPCREL
.byte 0x1b
.byte 0xc
.byte 31
.byte 0
.align 3
LECIEX:
_lj_BC_ISLT.eh:
LSFDE0:
.set L$set$0,LEFDE0-LASFDE0
.long L$set$0
LASFDE0:
.long LASFDE0-EH_frame1
.long _lj_BC_ISLT-.
.long 128
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE0:
_lj_BC_ISGE.eh:
LSFDE1:
.set L$set$1,LEFDE1-LASFDE1
.long L$set$1
LASFDE1:
.long LASFDE1-EH_frame1
.long _lj_BC_ISGE-.
.long 128
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE1:
_lj_BC_ISLE.eh:
LSFDE2:
.set L$set$2,LEFDE2-LASFDE2
.long L$set$2
LASFDE2:
.long LASFDE2-EH_frame1
.long _lj_BC_ISLE-.
.long 128
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE2:
_lj_BC_ISGT.eh:
LSFDE3:
.set L$set$3,LEFDE3-LASFDE3
.long L$set$3
LASFDE3:
.long LASFDE3-EH_frame1
.long _lj_BC_ISGT-.
.long 128
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE3:
_lj_BC_ISEQV.eh:
LSFDE4:
.set L$set$4,LEFDE4-LASFDE4
.long L$set$4
LASFDE4:
.long LASFDE4-EH_frame1
.long _lj_BC_ISEQV-.
.long 132
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE4:
_lj_BC_ISNEV.eh:
LSFDE5:
.set L$set$5,LEFDE5-LASFDE5
.long L$set$5
LASFDE5:
.long LASFDE5-EH_frame1
.long _lj_BC_ISNEV-.
.long 128
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE5:
_lj_BC_ISEQS.eh:
LSFDE6:
.set L$set$6,LEFDE6-LASFDE6
.long L$set$6
LASFDE6:
.long LASFDE6-EH_frame1
.long _lj_BC_ISEQS-.
.long 80
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE6:
_lj_BC_ISNES.eh:
LSFDE7:
.set L$set$7,LEFDE7-LASFDE7
.long L$set$7
LASFDE7:
.long LASFDE7-EH_frame1
.long _lj_BC_ISNES-.
.long 80
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE7:
_lj_BC_ISEQN.eh:
LSFDE8:
.set L$set$8,LEFDE8-LASFDE8
.long L$set$8
LASFDE8:
.long LASFDE8-EH_frame1
.long _lj_BC_ISEQN-.
.long 140
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE8:
_lj_BC_ISNEN.eh:
LSFDE9:
.set L$set$9,LEFDE9-LASFDE9
.long L$set$9
LASFDE9:
.long LASFDE9-EH_frame1
.long _lj_BC_ISNEN-.
.long 140
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE9:
_lj_BC_ISEQP.eh:
LSFDE10:
.set L$set$10,LEFDE10-LASFDE10
.long L$set$10
LASFDE10:
.long LASFDE10-EH_frame1
.long _lj_BC_ISEQP-.
.long 68
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE10:
_lj_BC_ISNEP.eh:
LSFDE11:
.set L$set$11,LEFDE11-LASFDE11
.long L$set$11
LASFDE11:
.long LASFDE11-EH_frame1
.long _lj_BC_ISNEP-.
.long 68
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE11:
_lj_BC_ISTC.eh:
LSFDE12:
.set L$set$12,LEFDE12-LASFDE12
.long L$set$12
LASFDE12:
.long LASFDE12-EH_frame1
.long _lj_BC_ISTC-.
.long 64
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE12:
_lj_BC_ISFC.eh:
LSFDE13:
.set L$set$13,LEFDE13-LASFDE13
.long L$set$13
LASFDE13:
.long LASFDE13-EH_frame1
.long _lj_BC_ISFC-.
.long 64
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE13:
_lj_BC_IST.eh:
LSFDE14:
.set L$set$14,LEFDE14-LASFDE14
.long L$set$14
LASFDE14:
.long LASFDE14-EH_frame1
.long _lj_BC_IST-.
.long 56
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE14:
_lj_BC_ISF.eh:
LSFDE15:
.set L$set$15,LEFDE15-LASFDE15
.long L$set$15
LASFDE15:
.long LASFDE15-EH_frame1
.long _lj_BC_ISF-.
.long 56
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE15:
_lj_BC_ISTYPE.eh:
LSFDE16:
.set L$set$16,LEFDE16-LASFDE16
.long L$set$16
LASFDE16:
.long LASFDE16-EH_frame1
.long _lj_BC_ISTYPE-.
.long 36
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE16:
_lj_BC_ISNUM.eh:
LSFDE17:
.set L$set$17,LEFDE17-LASFDE17
.long L$set$17
LASFDE17:
.long LASFDE17-EH_frame1
.long _lj_BC_ISNUM-.
.long 36
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE17:
_lj_BC_MOV.eh:
LSFDE18:
.set L$set$18,LEFDE18-LASFDE18
.long L$set$18
LASFDE18:
.long LASFDE18-EH_frame1
.long _lj_BC_MOV-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE18:
_lj_BC_NOT.eh:
LSFDE19:
.set L$set$19,LEFDE19-LASFDE19
.long L$set$19
LASFDE19:
.long LASFDE19-EH_frame1
.long _lj_BC_NOT-.
.long 48
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE19:
_lj_BC_UNM.eh:
LSFDE20:
.set L$set$20,LEFDE20-LASFDE20
.long L$set$20
LASFDE20:
.long LASFDE20-EH_frame1
.long _lj_BC_UNM-.
.long 68
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE20:
_lj_BC_LEN.eh:
LSFDE21:
.set L$set$21,LEFDE21-LASFDE21
.long L$set$21
LASFDE21:
.long LASFDE21-EH_frame1
.long _lj_BC_LEN-.
.long 72
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE21:
_lj_BC_ADDVN.eh:
LSFDE22:
.set L$set$22,LEFDE22-LASFDE22
.long L$set$22
LASFDE22:
.long LASFDE22-EH_frame1
.long _lj_BC_ADDVN-.
.long 108
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE22:
_lj_BC_SUBVN.eh:
LSFDE23:
.set L$set$23,LEFDE23-LASFDE23
.long L$set$23
LASFDE23:
.long LASFDE23-EH_frame1
.long _lj_BC_SUBVN-.
.long 108
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE23:
_lj_BC_MULVN.eh:
LSFDE24:
.set L$set$24,LEFDE24-LASFDE24
.long L$set$24
LASFDE24:
.long LASFDE24-EH_frame1
.long _lj_BC_MULVN-.
.long 116
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE24:
_lj_BC_DIVVN.eh:
LSFDE25:
.set L$set$25,LEFDE25-LASFDE25
.long L$set$25
LASFDE25:
.long LASFDE25-EH_frame1
.long _lj_BC_DIVVN-.
.long 72
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE25:
_lj_BC_MODVN.eh:
LSFDE26:
.set L$set$26,LEFDE26-LASFDE26
.long L$set$26
LASFDE26:
.long LASFDE26-EH_frame1
.long _lj_BC_MODVN-.
.long 116
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE26:
_lj_BC_ADDNV.eh:
LSFDE27:
.set L$set$27,LEFDE27-LASFDE27
.long L$set$27
LASFDE27:
.long LASFDE27-EH_frame1
.long _lj_BC_ADDNV-.
.long 108
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE27:
_lj_BC_SUBNV.eh:
LSFDE28:
.set L$set$28,LEFDE28-LASFDE28
.long L$set$28
LASFDE28:
.long LASFDE28-EH_frame1
.long _lj_BC_SUBNV-.
.long 108
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE28:
_lj_BC_MULNV.eh:
LSFDE29:
.set L$set$29,LEFDE29-LASFDE29
.long L$set$29
LASFDE29:
.long LASFDE29-EH_frame1
.long _lj_BC_MULNV-.
.long 116
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE29:
_lj_BC_DIVNV.eh:
LSFDE30:
.set L$set$30,LEFDE30-LASFDE30
.long L$set$30
LASFDE30:
.long LASFDE30-EH_frame1
.long _lj_BC_DIVNV-.
.long 72
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE30:
_lj_BC_MODNV.eh:
LSFDE31:
.set L$set$31,LEFDE31-LASFDE31
.long L$set$31
LASFDE31:
.long LASFDE31-EH_frame1
.long _lj_BC_MODNV-.
.long 116
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE31:
_lj_BC_ADDVV.eh:
LSFDE32:
.set L$set$32,LEFDE32-LASFDE32
.long L$set$32
LASFDE32:
.long LASFDE32-EH_frame1
.long _lj_BC_ADDVV-.
.long 108
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE32:
_lj_BC_SUBVV.eh:
LSFDE33:
.set L$set$33,LEFDE33-LASFDE33
.long L$set$33
LASFDE33:
.long LASFDE33-EH_frame1
.long _lj_BC_SUBVV-.
.long 108
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE33:
_lj_BC_MULVV.eh:
LSFDE34:
.set L$set$34,LEFDE34-LASFDE34
.long L$set$34
LASFDE34:
.long LASFDE34-EH_frame1
.long _lj_BC_MULVV-.
.long 116
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE34:
_lj_BC_DIVVV.eh:
LSFDE35:
.set L$set$35,LEFDE35-LASFDE35
.long L$set$35
LASFDE35:
.long LASFDE35-EH_frame1
.long _lj_BC_DIVVV-.
.long 72
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE35:
_lj_BC_MODVV.eh:
LSFDE36:
.set L$set$36,LEFDE36-LASFDE36
.long L$set$36
LASFDE36:
.long LASFDE36-EH_frame1
.long _lj_BC_MODVV-.
.long 116
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE36:
_lj_BC_POW.eh:
LSFDE37:
.set L$set$37,LEFDE37-LASFDE37
.long L$set$37
LASFDE37:
.long LASFDE37-EH_frame1
.long _lj_BC_POW-.
.long 72
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE37:
_lj_BC_CAT.eh:
LSFDE38:
.set L$set$38,LEFDE38-LASFDE38
.long L$set$38
LASFDE38:
.long LASFDE38-EH_frame1
.long _lj_BC_CAT-.
.long 76
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE38:
_lj_BC_KSTR.eh:
LSFDE39:
.set L$set$39,LEFDE39-LASFDE39
.long L$set$39
LASFDE39:
.long LASFDE39-EH_frame1
.long _lj_BC_KSTR-.
.long 44
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE39:
_lj_BC_KCDATA.eh:
LSFDE40:
.set L$set$40,LEFDE40-LASFDE40
.long L$set$40
LASFDE40:
.long LASFDE40-EH_frame1
.long _lj_BC_KCDATA-.
.long 44
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE40:
_lj_BC_KSHORT.eh:
LSFDE41:
.set L$set$41,LEFDE41-LASFDE41
.long L$set$41
LASFDE41:
.long LASFDE41-EH_frame1
.long _lj_BC_KSHORT-.
.long 36
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE41:
_lj_BC_KNUM.eh:
LSFDE42:
.set L$set$42,LEFDE42-LASFDE42
.long L$set$42
LASFDE42:
.long LASFDE42-EH_frame1
.long _lj_BC_KNUM-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE42:
_lj_BC_KPRI.eh:
LSFDE43:
.set L$set$43,LEFDE43-LASFDE43
.long L$set$43
LASFDE43:
.long LASFDE43-EH_frame1
.long _lj_BC_KPRI-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE43:
_lj_BC_KNIL.eh:
LSFDE44:
.set L$set$44,LEFDE44-LASFDE44
.long L$set$44
LASFDE44:
.long LASFDE44-EH_frame1
.long _lj_BC_KNIL-.
.long 48
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE44:
_lj_BC_UGET.eh:
LSFDE45:
.set L$set$45,LEFDE45-LASFDE45
.long L$set$45
LASFDE45:
.long LASFDE45-EH_frame1
.long _lj_BC_UGET-.
.long 52
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE45:
_lj_BC_USETV.eh:
LSFDE46:
.set L$set$46,LEFDE46-LASFDE46
.long L$set$46
LASFDE46:
.long LASFDE46-EH_frame1
.long _lj_BC_USETV-.
.long 112
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE46:
_lj_BC_USETS.eh:
LSFDE47:
.set L$set$47,LEFDE47-LASFDE47
.long L$set$47
LASFDE47:
.long LASFDE47-EH_frame1
.long _lj_BC_USETS-.
.long 104
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE47:
_lj_BC_USETN.eh:
LSFDE48:
.set L$set$48,LEFDE48-LASFDE48
.long L$set$48
LASFDE48:
.long LASFDE48-EH_frame1
.long _lj_BC_USETN-.
.long 52
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE48:
_lj_BC_USETP.eh:
LSFDE49:
.set L$set$49,LEFDE49-LASFDE49
.long L$set$49
LASFDE49:
.long LASFDE49-EH_frame1
.long _lj_BC_USETP-.
.long 52
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE49:
_lj_BC_UCLO.eh:
LSFDE50:
.set L$set$50,LEFDE50-LASFDE50
.long L$set$50
LASFDE50:
.long LASFDE50-EH_frame1
.long _lj_BC_UCLO-.
.long 60
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE50:
_lj_BC_FNEW.eh:
LSFDE51:
.set L$set$51,LEFDE51-LASFDE51
.long L$set$51
LASFDE51:
.long LASFDE51-EH_frame1
.long _lj_BC_FNEW-.
.long 72
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE51:
_lj_BC_TNEW.eh:
LSFDE52:
.set L$set$52,LEFDE52-LASFDE52
.long L$set$52
LASFDE52:
.long LASFDE52-EH_frame1
.long _lj_BC_TNEW-.
.long 96
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE52:
_lj_BC_TDUP.eh:
LSFDE53:
.set L$set$53,LEFDE53-LASFDE53
.long L$set$53
LASFDE53:
.long LASFDE53-EH_frame1
.long _lj_BC_TDUP-.
.long 84
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE53:
_lj_BC_GGET.eh:
LSFDE54:
.set L$set$54,LEFDE54-LASFDE54
.long L$set$54
LASFDE54:
.long LASFDE54-EH_frame1
.long _lj_BC_GGET-.
.long 24
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE54:
_lj_BC_GSET.eh:
LSFDE55:
.set L$set$55,LEFDE55-LASFDE55
.long L$set$55
LASFDE55:
.long LASFDE55-EH_frame1
.long _lj_BC_GSET-.
.long 24
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE55:
_lj_BC_TGETV.eh:
LSFDE56:
.set L$set$56,LEFDE56-LASFDE56
.long L$set$56
LASFDE56:
.long LASFDE56-EH_frame1
.long _lj_BC_TGETV-.
.long 140
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE56:
_lj_BC_TGETS.eh:
LSFDE57:
.set L$set$57,LEFDE57-LASFDE57
.long L$set$57
LASFDE57:
.long LASFDE57-EH_frame1
.long _lj_BC_TGETS-.
.long 148
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE57:
_lj_BC_TGETB.eh:
LSFDE58:
.set L$set$58,LEFDE58-LASFDE58
.long L$set$58
LASFDE58:
.long LASFDE58-EH_frame1
.long _lj_BC_TGETB-.
.long 108
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE58:
_lj_BC_TGETR.eh:
LSFDE59:
.set L$set$59,LEFDE59-LASFDE59
.long L$set$59
LASFDE59:
.long LASFDE59-EH_frame1
.long _lj_BC_TGETR-.
.long 72
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE59:
_lj_BC_TSETV.eh:
LSFDE60:
.set L$set$60,LEFDE60-LASFDE60
.long L$set$60
LASFDE60:
.long LASFDE60-EH_frame1
.long _lj_BC_TSETV-.
.long 176
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE60:
_lj_BC_TSETS.eh:
LSFDE61:
.set L$set$61,LEFDE61-LASFDE61
.long L$set$61
LASFDE61:
.long LASFDE61-EH_frame1
.long _lj_BC_TSETS-.
.long 252
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE61:
_lj_BC_TSETB.eh:
LSFDE62:
.set L$set$62,LEFDE62-LASFDE62
.long L$set$62
LASFDE62:
.long LASFDE62-EH_frame1
.long _lj_BC_TSETB-.
.long 144
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE62:
_lj_BC_TSETM.eh:
LSFDE63:
.set L$set$63,LEFDE63-LASFDE63
.long L$set$63
LASFDE63:
.long LASFDE63-EH_frame1
.long _lj_BC_TSETM-.
.long 148
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE63:
_lj_BC_TSETR.eh:
LSFDE64:
.set L$set$64,LEFDE64-LASFDE64
.long L$set$64
LASFDE64:
.long LASFDE64-EH_frame1
.long _lj_BC_TSETR-.
.long 104
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE64:
_lj_BC_CALLM.eh:
LSFDE65:
.set L$set$65,LEFDE65-LASFDE65
.long L$set$65
LASFDE65:
.long LASFDE65-EH_frame1
.long _lj_BC_CALLM-.
.long 16
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE65:
_lj_BC_CALL.eh:
LSFDE66:
.set L$set$66,LEFDE66-LASFDE66
.long L$set$66
LASFDE66:
.long LASFDE66-EH_frame1
.long _lj_BC_CALL-.
.long 72
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE66:
_lj_BC_CALLMT.eh:
LSFDE67:
.set L$set$67,LEFDE67-LASFDE67
.long L$set$67
LASFDE67:
.long LASFDE67-EH_frame1
.long _lj_BC_CALLMT-.
.long 12
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE67:
_lj_BC_CALLT.eh:
LSFDE68:
.set L$set$68,LEFDE68-LASFDE68
.long L$set$68
LASFDE68:
.long LASFDE68-EH_frame1
.long _lj_BC_CALLT-.
.long 188
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE68:
_lj_BC_ITERC.eh:
LSFDE69:
.set L$set$69,LEFDE69-LASFDE69
.long L$set$69
LASFDE69:
.long LASFDE69-EH_frame1
.long _lj_BC_ITERC-.
.long 80
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE69:
_lj_BC_ITERN.eh:
LSFDE70:
.set L$set$70,LEFDE70-LASFDE70
.long L$set$70
LASFDE70:
.long LASFDE70-EH_frame1
.long _lj_BC_ITERN-.
.long 164
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE70:
_lj_BC_VARG.eh:
LSFDE71:
.set L$set$71,LEFDE71-LASFDE71
.long L$set$71
LASFDE71:
.long LASFDE71-EH_frame1
.long _lj_BC_VARG-.
.long 188
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE71:
_lj_BC_ISNEXT.eh:
LSFDE72:
.set L$set$72,LEFDE72-LASFDE72
.long L$set$72
LASFDE72:
.long LASFDE72-EH_frame1
.long _lj_BC_ISNEXT-.
.long 120
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE72:
_lj_BC_RETM.eh:
LSFDE73:
.set L$set$73,LEFDE73-LASFDE73
.long L$set$73
LASFDE73:
.long LASFDE73-EH_frame1
.long _lj_BC_RETM-.
.long 20
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE73:
_lj_BC_RET.eh:
LSFDE74:
.set L$set$74,LEFDE74-LASFDE74
.long L$set$74
LASFDE74:
.long LASFDE74-EH_frame1
.long _lj_BC_RET-.
.long 168
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE74:
_lj_BC_RET0.eh:
LSFDE75:
.set L$set$75,LEFDE75-LASFDE75
.long L$set$75
LASFDE75:
.long LASFDE75-EH_frame1
.long _lj_BC_RET0-.
.long 104
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE75:
_lj_BC_RET1.eh:
LSFDE76:
.set L$set$76,LEFDE76-LASFDE76
.long L$set$76
LASFDE76:
.long LASFDE76-EH_frame1
.long _lj_BC_RET1-.
.long 112
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE76:
_lj_BC_FORI.eh:
LSFDE77:
.set L$set$77,LEFDE77-LASFDE77
.long L$set$77
LASFDE77:
.long LASFDE77-EH_frame1
.long _lj_BC_FORI-.
.long 144
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE77:
_lj_BC_JFORI.eh:
LSFDE78:
.set L$set$78,LEFDE78-LASFDE78
.long L$set$78
LASFDE78:
.long LASFDE78-EH_frame1
.long _lj_BC_JFORI-.
.long 156
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE78:
_lj_BC_FORL.eh:
LSFDE79:
.set L$set$79,LEFDE79-LASFDE79
.long L$set$79
LASFDE79:
.long LASFDE79-EH_frame1
.long _lj_BC_FORL-.
.long 28
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE79:
_lj_BC_IFORL.eh:
LSFDE80:
.set L$set$80,LEFDE80-LASFDE80
.long L$set$80
LASFDE80:
.long LASFDE80-EH_frame1
.long _lj_BC_IFORL-.
.long 140
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE80:
_lj_BC_JFORL.eh:
LSFDE81:
.set L$set$81,LEFDE81-LASFDE81
.long L$set$81
LASFDE81:
.long LASFDE81-EH_frame1
.long _lj_BC_JFORL-.
.long 132
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE81:
_lj_BC_ITERL.eh:
LSFDE82:
.set L$set$82,LEFDE82-LASFDE82
.long L$set$82
LASFDE82:
.long LASFDE82-EH_frame1
.long _lj_BC_ITERL-.
.long 28
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE82:
_lj_BC_IITERL.eh:
LSFDE83:
.set L$set$83,LEFDE83-LASFDE83
.long L$set$83
LASFDE83:
.long LASFDE83-EH_frame1
.long _lj_BC_IITERL-.
.long 52
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE83:
_lj_BC_JITERL.eh:
LSFDE84:
.set L$set$84,LEFDE84-LASFDE84
.long L$set$84
LASFDE84:
.long LASFDE84-EH_frame1
.long _lj_BC_JITERL-.
.long 48
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE84:
_lj_BC_LOOP.eh:
LSFDE85:
.set L$set$85,LEFDE85-LASFDE85
.long L$set$85
LASFDE85:
.long LASFDE85-EH_frame1
.long _lj_BC_LOOP-.
.long 28
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE85:
_lj_BC_ILOOP.eh:
LSFDE86:
.set L$set$86,LEFDE86-LASFDE86
.long L$set$86
LASFDE86:
.long LASFDE86-EH_frame1
.long _lj_BC_ILOOP-.
.long 24
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE86:
_lj_BC_JLOOP.eh:
LSFDE87:
.set L$set$87,LEFDE87-LASFDE87
.long L$set$87
LASFDE87:
.long LASFDE87-EH_frame1
.long _lj_BC_JLOOP-.
.long 36
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE87:
_lj_BC_JMP.eh:
LSFDE88:
.set L$set$88,LEFDE88-LASFDE88
.long L$set$88
LASFDE88:
.long LASFDE88-EH_frame1
.long _lj_BC_JMP-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE88:
_lj_BC_FUNCF.eh:
LSFDE89:
.set L$set$89,LEFDE89-LASFDE89
.long L$set$89
LASFDE89:
.long LASFDE89-EH_frame1
.long _lj_BC_FUNCF-.
.long 28
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE89:
_lj_BC_IFUNCF.eh:
LSFDE90:
.set L$set$90,LEFDE90-LASFDE90
.long L$set$90
LASFDE90:
.long LASFDE90-EH_frame1
.long _lj_BC_IFUNCF-.
.long 64
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE90:
_lj_BC_JFUNCF.eh:
LSFDE91:
.set L$set$91,LEFDE91-LASFDE91
.long L$set$91
LASFDE91:
.long LASFDE91-EH_frame1
.long _lj_BC_JFUNCF-.
.long 48
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE91:
_lj_BC_IFUNCV.eh:
LSFDE93:
.set L$set$93,LEFDE93-LASFDE93
.long L$set$93
LASFDE93:
.long LASFDE93-EH_frame1
.long _lj_BC_IFUNCV-.
.long 132
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE93:
_lj_BC_JFUNCV.eh:
LSFDE94:
.set L$set$94,LEFDE94-LASFDE94
.long L$set$94
LASFDE94:
.long LASFDE94-EH_frame1
.long _lj_BC_JFUNCV-.
.long 4
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE94:
_lj_BC_FUNCC.eh:
LSFDE95:
.set L$set$95,LEFDE95-LASFDE95
.long L$set$95
LASFDE95:
.long LASFDE95-EH_frame1
.long _lj_BC_FUNCC-.
.long 72
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE95:
_lj_BC_FUNCCW.eh:
LSFDE96:
.set L$set$96,LEFDE96-LASFDE96
.long L$set$96
LASFDE96:
.long LASFDE96-EH_frame1
.long _lj_BC_FUNCCW-.
.long 76
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE96:
_lj_vm_returnp.eh:
LSFDE97:
.set L$set$97,LEFDE97-LASFDE97
.long L$set$97
LASFDE97:
.long LASFDE97-EH_frame1
.long _lj_vm_returnp-.
.long 20
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE97:
_lj_vm_returnc.eh:
LSFDE98:
.set L$set$98,LEFDE98-LASFDE98
.long L$set$98
LASFDE98:
.long LASFDE98-EH_frame1
.long _lj_vm_returnc-.
.long 24
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE98:
_lj_vm_return.eh:
LSFDE99:
.set L$set$99,LEFDE99-LASFDE99
.long L$set$99
LASFDE99:
.long LASFDE99-EH_frame1
.long _lj_vm_return-.
.long 72
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE99:
_lj_vm_leave_cp.eh:
LSFDE100:
.set L$set$100,LEFDE100-LASFDE100
.long L$set$100
LASFDE100:
.long LASFDE100-EH_frame1
.long _lj_vm_leave_cp-.
.long 12
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE100:
_lj_vm_leave_unw.eh:
LSFDE101:
.set L$set$101,LEFDE101-LASFDE101
.long L$set$101
LASFDE101:
.long LASFDE101-EH_frame1
.long _lj_vm_leave_unw-.
.long 116
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE101:
_lj_vm_unwind_c.eh:
LSFDE102:
.set L$set$102,LEFDE102-LASFDE102
.long L$set$102
LASFDE102:
.long LASFDE102-EH_frame1
.long _lj_vm_unwind_c-.
.long 8
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE102:
_lj_vm_unwind_c_eh.eh:
LSFDE103:
.set L$set$103,LEFDE103-LASFDE103
.long L$set$103
LASFDE103:
.long LASFDE103-EH_frame1
.long _lj_vm_unwind_c_eh-.
.long 20
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE103:
_lj_vm_unwind_ff.eh:
LSFDE104:
.set L$set$104,LEFDE104-LASFDE104
.long L$set$104
LASFDE104:
.long LASFDE104-EH_frame1
.long _lj_vm_unwind_ff-.
.long 4
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE104:
_lj_vm_unwind_ff_eh.eh:
LSFDE105:
.set L$set$105,LEFDE105-LASFDE105
.long L$set$105
LASFDE105:
.long LASFDE105-EH_frame1
.long _lj_vm_unwind_ff_eh-.
.long 52
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE105:
_lj_vm_growstack_c.eh:
LSFDE106:
.set L$set$106,LEFDE106-LASFDE106
.long L$set$106
LASFDE106:
.long LASFDE106-EH_frame1
.long _lj_vm_growstack_c-.
.long 8
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE106:
_lj_vm_growstack_l.eh:
LSFDE107:
.set L$set$107,LEFDE107-LASFDE107
.long L$set$107
LASFDE107:
.long LASFDE107-EH_frame1
.long _lj_vm_growstack_l-.
.long 76
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE107:
_lj_vm_resume.eh:
LSFDE108:
.set L$set$108,LEFDE108-LASFDE108
.long L$set$108
LASFDE108:
.long LASFDE108-EH_frame1
.long _lj_vm_resume-.
.long 160
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE108:
_lj_vm_pcall.eh:
LSFDE109:
.set L$set$109,LEFDE109-LASFDE109
.long L$set$109
LASFDE109:
.long LASFDE109-EH_frame1
.long _lj_vm_pcall-.
.long 60
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE109:
_lj_vm_call.eh:
LSFDE110:
.set L$set$110,LEFDE110-LASFDE110
.long L$set$110
LASFDE110:
.long LASFDE110-EH_frame1
.long _lj_vm_call-.
.long 124
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE110:
_lj_vm_call_dispatch.eh:
LSFDE111:
.set L$set$111,LEFDE111-LASFDE111
.long L$set$111
LASFDE111:
.long LASFDE111-EH_frame1
.long _lj_vm_call_dispatch-.
.long 20
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE111:
_lj_vm_call_dispatch_f.eh:
LSFDE112:
.set L$set$112,LEFDE112-LASFDE112
.long L$set$112
LASFDE112:
.long LASFDE112-EH_frame1
.long _lj_vm_call_dispatch_f-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE112:
_lj_vm_cpcall.eh:
LSFDE113:
.set L$set$113,LEFDE113-LASFDE113
.long L$set$113
LASFDE113:
.long LASFDE113-EH_frame1
.long _lj_vm_cpcall-.
.long 120
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE113:
_lj_cont_dispatch.eh:
LSFDE114:
.set L$set$114,LEFDE114-LASFDE114
.long L$set$114
LASFDE114:
.long LASFDE114-EH_frame1
.long _lj_cont_dispatch-.
.long 68
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE114:
_lj_cont_cat.eh:
LSFDE115:
.set L$set$115,LEFDE115-LASFDE115
.long L$set$115
LASFDE115:
.long LASFDE115-EH_frame1
.long _lj_cont_cat-.
.long 56
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE115:
_lj_vmeta_tgets1.eh:
LSFDE116:
.set L$set$116,LEFDE116-LASFDE116
.long L$set$116
LASFDE116:
.long LASFDE116-EH_frame1
.long _lj_vmeta_tgets1-.
.long 16
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE116:
_lj_vmeta_tgets.eh:
LSFDE117:
.set L$set$117,LEFDE117-LASFDE117
.long L$set$117
LASFDE117:
.long LASFDE117-EH_frame1
.long _lj_vmeta_tgets-.
.long 24
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE117:
_lj_vmeta_tgetb.eh:
LSFDE118:
.set L$set$118,LEFDE118-LASFDE118
.long L$set$118
LASFDE118:
.long LASFDE118-EH_frame1
.long _lj_vmeta_tgetb-.
.long 20
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE118:
_lj_vmeta_tgetv.eh:
LSFDE119:
.set L$set$119,LEFDE119-LASFDE119
.long L$set$119
LASFDE119:
.long LASFDE119-EH_frame1
.long _lj_vmeta_tgetv-.
.long 92
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE119:
_lj_vmeta_tgetr.eh:
LSFDE120:
.set L$set$120,LEFDE120-LASFDE120
.long L$set$120
LASFDE120:
.long LASFDE120-EH_frame1
.long _lj_vmeta_tgetr-.
.long 24
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE120:
_lj_vmeta_tsets1.eh:
LSFDE121:
.set L$set$121,LEFDE121-LASFDE121
.long L$set$121
LASFDE121:
.long LASFDE121-EH_frame1
.long _lj_vmeta_tsets1-.
.long 16
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE121:
_lj_vmeta_tsets.eh:
LSFDE122:
.set L$set$122,LEFDE122-LASFDE122
.long L$set$122
LASFDE122:
.long LASFDE122-EH_frame1
.long _lj_vmeta_tsets-.
.long 24
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE122:
_lj_vmeta_tsetb.eh:
LSFDE123:
.set L$set$123,LEFDE123-LASFDE123
.long L$set$123
LASFDE123:
.long LASFDE123-EH_frame1
.long _lj_vmeta_tsetb-.
.long 20
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE123:
_lj_vmeta_tsetv.eh:
LSFDE124:
.set L$set$124,LEFDE124-LASFDE124
.long L$set$124
LASFDE124:
.long LASFDE124-EH_frame1
.long _lj_vmeta_tsetv-.
.long 96
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE124:
_lj_vmeta_tsetr.eh:
LSFDE125:
.set L$set$125,LEFDE125-LASFDE125
.long L$set$125
LASFDE125:
.long LASFDE125-EH_frame1
.long _lj_vmeta_tsetr-.
.long 24
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE125:
_lj_vmeta_comp.eh:
LSFDE126:
.set L$set$126,LEFDE126-LASFDE126
.long L$set$126
LASFDE126:
.long LASFDE126-EH_frame1
.long _lj_vmeta_comp-.
.long 60
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE126:
_lj_cont_nop.eh:
LSFDE127:
.set L$set$127,LEFDE127-LASFDE127
.long L$set$127
LASFDE127:
.long LASFDE127-EH_frame1
.long _lj_cont_nop-.
.long 24
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE127:
_lj_cont_ra.eh:
LSFDE128:
.set L$set$128,LEFDE128-LASFDE128
.long L$set$128
LASFDE128:
.long LASFDE128-EH_frame1
.long _lj_cont_ra-.
.long 20
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE128:
_lj_cont_condt.eh:
LSFDE129:
.set L$set$129,LEFDE129-LASFDE129
.long L$set$129
LASFDE129:
.long LASFDE129-EH_frame1
.long _lj_cont_condt-.
.long 16
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE129:
_lj_cont_condf.eh:
LSFDE130:
.set L$set$130,LEFDE130-LASFDE130
.long L$set$130
LASFDE130:
.long LASFDE130-EH_frame1
.long _lj_cont_condf-.
.long 16
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE130:
_lj_vmeta_equal.eh:
LSFDE131:
.set L$set$131,LEFDE131-LASFDE131
.long L$set$131
LASFDE131:
.long LASFDE131-EH_frame1
.long _lj_vmeta_equal-.
.long 28
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE131:
_lj_vmeta_equal_cd.eh:
LSFDE132:
.set L$set$132,LEFDE132-LASFDE132
.long L$set$132
LASFDE132:
.long LASFDE132-EH_frame1
.long _lj_vmeta_equal_cd-.
.long 28
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE132:
_lj_vmeta_istype.eh:
LSFDE133:
.set L$set$133,LEFDE133-LASFDE133
.long L$set$133
LASFDE133:
.long LASFDE133-EH_frame1
.long _lj_vmeta_istype-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE133:
_lj_vmeta_arith_vn.eh:
LSFDE134:
.set L$set$134,LEFDE134-LASFDE134
.long L$set$134
LASFDE134:
.long LASFDE134-EH_frame1
.long _lj_vmeta_arith_vn-.
.long 12
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE134:
_lj_vmeta_arith_nv.eh:
LSFDE135:
.set L$set$135,LEFDE135-LASFDE135
.long L$set$135
LASFDE135:
.long LASFDE135-EH_frame1
.long _lj_vmeta_arith_nv-.
.long 12
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE135:
_lj_vmeta_unm.eh:
LSFDE136:
.set L$set$136,LEFDE136-LASFDE136
.long L$set$136
LASFDE136:
.long LASFDE136-EH_frame1
.long _lj_vmeta_unm-.
.long 12
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE136:
_lj_vmeta_arith_vv.eh:
LSFDE137:
.set L$set$137,LEFDE137-LASFDE137
.long L$set$137
LASFDE137:
.long LASFDE137-EH_frame1
.long _lj_vmeta_arith_vv-.
.long 36
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE137:
_lj_vmeta_binop.eh:
LSFDE138:
.set L$set$138,LEFDE138-LASFDE138
.long L$set$138
LASFDE138:
.long LASFDE138-EH_frame1
.long _lj_vmeta_binop-.
.long 24
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE138:
_lj_vmeta_len.eh:
LSFDE139:
.set L$set$139,LEFDE139-LASFDE139
.long L$set$139
LASFDE139:
.long LASFDE139-EH_frame1
.long _lj_vmeta_len-.
.long 24
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE139:
_lj_vmeta_call.eh:
LSFDE140:
.set L$set$140,LEFDE140-LASFDE140
.long L$set$140
LASFDE140:
.long LASFDE140-EH_frame1
.long _lj_vmeta_call-.
.long 68
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE140:
_lj_vmeta_callt.eh:
LSFDE141:
.set L$set$141,LEFDE141-LASFDE141
.long L$set$141
LASFDE141:
.long LASFDE141-EH_frame1
.long _lj_vmeta_callt-.
.long 44
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE141:
_lj_vmeta_for.eh:
LSFDE142:
.set L$set$142,LEFDE142-LASFDE142
.long L$set$142
LASFDE142:
.long LASFDE142-EH_frame1
.long _lj_vmeta_for-.
.long 48
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE142:
_lj_ff_assert.eh:
LSFDE143:
.set L$set$143,LEFDE143-LASFDE143
.long L$set$143
LASFDE143:
.long LASFDE143-EH_frame1
.long _lj_ff_assert-.
.long 68
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE143:
_lj_ff_type.eh:
LSFDE144:
.set L$set$144,LEFDE144-LASFDE144
.long L$set$144
LASFDE144:
.long LASFDE144-EH_frame1
.long _lj_ff_type-.
.long 40
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE144:
_lj_ff_getmetatable.eh:
LSFDE145:
.set L$set$145,LEFDE145-LASFDE145
.long L$set$145
LASFDE145:
.long LASFDE145-EH_frame1
.long _lj_ff_getmetatable-.
.long 148
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE145:
_lj_ff_setmetatable.eh:
LSFDE146:
.set L$set$146,LEFDE146-LASFDE146
.long L$set$146
LASFDE146:
.long LASFDE146-EH_frame1
.long _lj_ff_setmetatable-.
.long 88
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE146:
_lj_ff_rawget.eh:
LSFDE147:
.set L$set$147,LEFDE147-LASFDE147
.long L$set$147
LASFDE147:
.long LASFDE147-EH_frame1
.long _lj_ff_rawget-.
.long 48
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE147:
_lj_ff_tonumber.eh:
LSFDE148:
.set L$set$148,LEFDE148-LASFDE148
.long L$set$148
LASFDE148:
.long LASFDE148-EH_frame1
.long _lj_ff_tonumber-.
.long 24
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE148:
_lj_ff_tostring.eh:
LSFDE149:
.set L$set$149,LEFDE149-LASFDE149
.long L$set$149
LASFDE149:
.long LASFDE149-EH_frame1
.long _lj_ff_tostring-.
.long 92
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE149:
_lj_ff_next.eh:
LSFDE150:
.set L$set$150,LEFDE150-LASFDE150
.long L$set$150
LASFDE150:
.long LASFDE150-EH_frame1
.long _lj_ff_next-.
.long 80
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE150:
_lj_ff_pairs.eh:
LSFDE151:
.set L$set$151,LEFDE151-LASFDE151
.long L$set$151
LASFDE151:
.long LASFDE151-EH_frame1
.long _lj_ff_pairs-.
.long 52
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE151:
_lj_ff_ipairs_aux.eh:
LSFDE152:
.set L$set$152,LEFDE152-LASFDE152
.long L$set$152
LASFDE152:
.long LASFDE152-EH_frame1
.long _lj_ff_ipairs_aux-.
.long 120
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE152:
_lj_ff_ipairs.eh:
LSFDE153:
.set L$set$153,LEFDE153-LASFDE153
.long L$set$153
LASFDE153:
.long LASFDE153-EH_frame1
.long _lj_ff_ipairs-.
.long 52
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE153:
_lj_ff_pcall.eh:
LSFDE154:
.set L$set$154,LEFDE154-LASFDE154
.long L$set$154
LASFDE154:
.long LASFDE154-EH_frame1
.long _lj_ff_pcall-.
.long 56
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE154:
_lj_ff_xpcall.eh:
LSFDE155:
.set L$set$155,LEFDE155-LASFDE155
.long L$set$155
LASFDE155:
.long LASFDE155-EH_frame1
.long _lj_ff_xpcall-.
.long 60
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE155:
_lj_ff_coroutine_resume.eh:
LSFDE156:
.set L$set$156,LEFDE156-LASFDE156
.long L$set$156
LASFDE156:
.long LASFDE156-EH_frame1
.long _lj_ff_coroutine_resume-.
.long 316
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE156:
_lj_ff_coroutine_wrap_aux.eh:
LSFDE157:
.set L$set$157,LEFDE157-LASFDE157
.long L$set$157
LASFDE157:
.long LASFDE157-EH_frame1
.long _lj_ff_coroutine_wrap_aux-.
.long 264
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE157:
_lj_ff_coroutine_yield.eh:
LSFDE158:
.set L$set$158,LEFDE158-LASFDE158
.long L$set$158
LASFDE158:
.long LASFDE158-EH_frame1
.long _lj_ff_coroutine_yield-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE158:
_lj_ff_math_floor.eh:
LSFDE159:
.set L$set$159,LEFDE159-LASFDE159
.long L$set$159
LASFDE159:
.long LASFDE159-EH_frame1
.long _lj_ff_math_floor-.
.long 36
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE159:
_lj_ff_math_ceil.eh:
LSFDE160:
.set L$set$160,LEFDE160-LASFDE160
.long L$set$160
LASFDE160:
.long LASFDE160-EH_frame1
.long _lj_ff_math_ceil-.
.long 36
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE160:
_lj_ff_math_abs.eh:
LSFDE161:
.set L$set$161,LEFDE161-LASFDE161
.long L$set$161
LASFDE161:
.long LASFDE161-EH_frame1
.long _lj_ff_math_abs-.
.long 48
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE161:
_lj_fff_restv.eh:
LSFDE162:
.set L$set$162,LEFDE162-LASFDE162
.long L$set$162
LASFDE162:
.long LASFDE162-EH_frame1
.long _lj_fff_restv-.
.long 8
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE162:
_lj_fff_res1.eh:
LSFDE163:
.set L$set$163,LEFDE163-LASFDE163
.long L$set$163
LASFDE163:
.long LASFDE163-EH_frame1
.long _lj_fff_res1-.
.long 4
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE163:
_lj_fff_res.eh:
LSFDE164:
.set L$set$164,LEFDE164-LASFDE164
.long L$set$164
LASFDE164:
.long LASFDE164-EH_frame1
.long _lj_fff_res-.
.long 80
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE164:
_lj_ff_math_sqrt.eh:
LSFDE165:
.set L$set$165,LEFDE165-LASFDE165
.long L$set$165
LASFDE165:
.long LASFDE165-EH_frame1
.long _lj_ff_math_sqrt-.
.long 28
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE165:
_lj_fff_resn.eh:
LSFDE166:
.set L$set$166,LEFDE166-LASFDE166
.long L$set$166
LASFDE166:
.long LASFDE166-EH_frame1
.long _lj_fff_resn-.
.long 12
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE166:
_lj_ff_math_log.eh:
LSFDE167:
.set L$set$167,LEFDE167-LASFDE167
.long L$set$167
LASFDE167:
.long LASFDE167-EH_frame1
.long _lj_ff_math_log-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE167:
_lj_ff_math_log10.eh:
LSFDE168:
.set L$set$168,LEFDE168-LASFDE168
.long L$set$168
LASFDE168:
.long LASFDE168-EH_frame1
.long _lj_ff_math_log10-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE168:
_lj_ff_math_exp.eh:
LSFDE169:
.set L$set$169,LEFDE169-LASFDE169
.long L$set$169
LASFDE169:
.long LASFDE169-EH_frame1
.long _lj_ff_math_exp-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE169:
_lj_ff_math_sin.eh:
LSFDE170:
.set L$set$170,LEFDE170-LASFDE170
.long L$set$170
LASFDE170:
.long LASFDE170-EH_frame1
.long _lj_ff_math_sin-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE170:
_lj_ff_math_cos.eh:
LSFDE171:
.set L$set$171,LEFDE171-LASFDE171
.long L$set$171
LASFDE171:
.long LASFDE171-EH_frame1
.long _lj_ff_math_cos-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE171:
_lj_ff_math_tan.eh:
LSFDE172:
.set L$set$172,LEFDE172-LASFDE172
.long L$set$172
LASFDE172:
.long LASFDE172-EH_frame1
.long _lj_ff_math_tan-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE172:
_lj_ff_math_asin.eh:
LSFDE173:
.set L$set$173,LEFDE173-LASFDE173
.long L$set$173
LASFDE173:
.long LASFDE173-EH_frame1
.long _lj_ff_math_asin-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE173:
_lj_ff_math_acos.eh:
LSFDE174:
.set L$set$174,LEFDE174-LASFDE174
.long L$set$174
LASFDE174:
.long LASFDE174-EH_frame1
.long _lj_ff_math_acos-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE174:
_lj_ff_math_atan.eh:
LSFDE175:
.set L$set$175,LEFDE175-LASFDE175
.long L$set$175
LASFDE175:
.long LASFDE175-EH_frame1
.long _lj_ff_math_atan-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE175:
_lj_ff_math_sinh.eh:
LSFDE176:
.set L$set$176,LEFDE176-LASFDE176
.long L$set$176
LASFDE176:
.long LASFDE176-EH_frame1
.long _lj_ff_math_sinh-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE176:
_lj_ff_math_cosh.eh:
LSFDE177:
.set L$set$177,LEFDE177-LASFDE177
.long L$set$177
LASFDE177:
.long LASFDE177-EH_frame1
.long _lj_ff_math_cosh-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE177:
_lj_ff_math_tanh.eh:
LSFDE178:
.set L$set$178,LEFDE178-LASFDE178
.long L$set$178
LASFDE178:
.long LASFDE178-EH_frame1
.long _lj_ff_math_tanh-.
.long 32
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE178:
_lj_ff_math_pow.eh:
LSFDE179:
.set L$set$179,LEFDE179-LASFDE179
.long L$set$179
LASFDE179:
.long LASFDE179-EH_frame1
.long _lj_ff_math_pow-.
.long 40
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE179:
_lj_ff_math_atan2.eh:
LSFDE180:
.set L$set$180,LEFDE180-LASFDE180
.long L$set$180
LASFDE180:
.long LASFDE180-EH_frame1
.long _lj_ff_math_atan2-.
.long 40
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE180:
_lj_ff_math_fmod.eh:
LSFDE181:
.set L$set$181,LEFDE181-LASFDE181
.long L$set$181
LASFDE181:
.long LASFDE181-EH_frame1
.long _lj_ff_math_fmod-.
.long 40
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE181:
_lj_ff_math_ldexp.eh:
LSFDE182:
.set L$set$182,LEFDE182-LASFDE182
.long L$set$182
LASFDE182:
.long LASFDE182-EH_frame1
.long _lj_ff_math_ldexp-.
.long 44
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE182:
_lj_ff_math_frexp.eh:
LSFDE183:
.set L$set$183,LEFDE183-LASFDE183
.long L$set$183
LASFDE183:
.long LASFDE183-EH_frame1
.long _lj_ff_math_frexp-.
.long 60
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE183:
_lj_ff_math_modf.eh:
LSFDE184:
.set L$set$184,LEFDE184-LASFDE184
.long L$set$184
LASFDE184:
.long LASFDE184-EH_frame1
.long _lj_ff_math_modf-.
.long 48
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE184:
_lj_ff_math_min.eh:
LSFDE185:
.set L$set$185,LEFDE185-LASFDE185
.long L$set$185
LASFDE185:
.long LASFDE185-EH_frame1
.long _lj_ff_math_min-.
.long 140
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE185:
_lj_ff_math_max.eh:
LSFDE186:
.set L$set$186,LEFDE186-LASFDE186
.long L$set$186
LASFDE186:
.long LASFDE186-EH_frame1
.long _lj_ff_math_max-.
.long 140
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE186:
_lj_ff_string_byte.eh:
LSFDE187:
.set L$set$187,LEFDE187-LASFDE187
.long L$set$187
LASFDE187:
.long LASFDE187-EH_frame1
.long _lj_ff_string_byte-.
.long 52
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE187:
_lj_ff_string_char.eh:
LSFDE188:
.set L$set$188,LEFDE188-LASFDE188
.long L$set$188
LASFDE188:
.long LASFDE188-EH_frame1
.long _lj_ff_string_char-.
.long 48
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE188:
_lj_fff_newstr.eh:
LSFDE189:
.set L$set$189,LEFDE189-LASFDE189
.long L$set$189
LASFDE189:
.long LASFDE189-EH_frame1
.long _lj_fff_newstr-.
.long 16
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE189:
_lj_fff_resstr.eh:
LSFDE190:
.set L$set$190,LEFDE190-LASFDE190
.long L$set$190
LASFDE190:
.long LASFDE190-EH_frame1
.long _lj_fff_resstr-.
.long 16
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE190:
_lj_ff_string_sub.eh:
LSFDE191:
.set L$set$191,LEFDE191-LASFDE191
.long L$set$191
LASFDE191:
.long LASFDE191-EH_frame1
.long _lj_ff_string_sub-.
.long 172
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE191:
_lj_ff_string_reverse.eh:
LSFDE192:
.set L$set$192,LEFDE192-LASFDE192
.long L$set$192
LASFDE192:
.long LASFDE192-EH_frame1
.long _lj_ff_string_reverse-.
.long 76
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE192:
_lj_ff_string_lower.eh:
LSFDE193:
.set L$set$193,LEFDE193-LASFDE193
.long L$set$193
LASFDE193:
.long LASFDE193-EH_frame1
.long _lj_ff_string_lower-.
.long 76
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE193:
_lj_ff_string_upper.eh:
LSFDE194:
.set L$set$194,LEFDE194-LASFDE194
.long L$set$194
LASFDE194:
.long LASFDE194-EH_frame1
.long _lj_ff_string_upper-.
.long 76
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE194:
_lj_vm_tobit_fb.eh:
LSFDE195:
.set L$set$195,LEFDE195-LASFDE195
.long L$set$195
LASFDE195:
.long LASFDE195-EH_frame1
.long _lj_vm_tobit_fb-.
.long 56
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE195:
_lj_ff_bit_band.eh:
LSFDE196:
.set L$set$196,LEFDE196-LASFDE196
.long L$set$196
LASFDE196:
.long LASFDE196-EH_frame1
.long _lj_ff_bit_band-.
.long 68
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE196:
_lj_ff_bit_bor.eh:
LSFDE197:
.set L$set$197,LEFDE197-LASFDE197
.long L$set$197
LASFDE197:
.long LASFDE197-EH_frame1
.long _lj_ff_bit_bor-.
.long 68
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE197:
_lj_ff_bit_bxor.eh:
LSFDE198:
.set L$set$198,LEFDE198-LASFDE198
.long L$set$198
LASFDE198:
.long LASFDE198-EH_frame1
.long _lj_ff_bit_bxor-.
.long 68
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE198:
_lj_ff_bit_tobit.eh:
LSFDE199:
.set L$set$199,LEFDE199-LASFDE199
.long L$set$199
LASFDE199:
.long LASFDE199-EH_frame1
.long _lj_ff_bit_tobit-.
.long 36
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE199:
_lj_ff_bit_bswap.eh:
LSFDE200:
.set L$set$200,LEFDE200-LASFDE200
.long L$set$200
LASFDE200:
.long LASFDE200-EH_frame1
.long _lj_ff_bit_bswap-.
.long 36
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE200:
_lj_ff_bit_bnot.eh:
LSFDE201:
.set L$set$201,LEFDE201-LASFDE201
.long L$set$201
LASFDE201:
.long LASFDE201-EH_frame1
.long _lj_ff_bit_bnot-.
.long 36
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE201:
_lj_ff_bit_lshift.eh:
LSFDE202:
.set L$set$202,LEFDE202-LASFDE202
.long L$set$202
LASFDE202:
.long LASFDE202-EH_frame1
.long _lj_ff_bit_lshift-.
.long 56
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE202:
_lj_ff_bit_rshift.eh:
LSFDE203:
.set L$set$203,LEFDE203-LASFDE203
.long L$set$203
LASFDE203:
.long LASFDE203-EH_frame1
.long _lj_ff_bit_rshift-.
.long 56
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE203:
_lj_ff_bit_arshift.eh:
LSFDE204:
.set L$set$204,LEFDE204-LASFDE204
.long L$set$204
LASFDE204:
.long LASFDE204-EH_frame1
.long _lj_ff_bit_arshift-.
.long 56
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE204:
_lj_ff_bit_rol.eh:
LSFDE205:
.set L$set$205,LEFDE205-LASFDE205
.long L$set$205
LASFDE205:
.long LASFDE205-EH_frame1
.long _lj_ff_bit_rol-.
.long 56
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE205:
_lj_ff_bit_ror.eh:
LSFDE206:
.set L$set$206,LEFDE206-LASFDE206
.long L$set$206
LASFDE206:
.long LASFDE206-EH_frame1
.long _lj_ff_bit_ror-.
.long 56
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE206:
_lj_fff_fallback.eh:
LSFDE207:
.set L$set$207,LEFDE207-LASFDE207
.long L$set$207
LASFDE207:
.long LASFDE207-EH_frame1
.long _lj_fff_fallback-.
.long 116
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE207:
_lj_vm_call_tail.eh:
LSFDE208:
.set L$set$208,LEFDE208-LASFDE208
.long L$set$208
LASFDE208:
.long LASFDE208-EH_frame1
.long _lj_vm_call_tail-.
.long 52
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE208:
_lj_fff_gcstep.eh:
LSFDE209:
.set L$set$209,LEFDE209-LASFDE209
.long L$set$209
LASFDE209:
.long LASFDE209-EH_frame1
.long _lj_fff_gcstep-.
.long 48
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE209:
_lj_vm_record.eh:
LSFDE210:
.set L$set$210,LEFDE210-LASFDE210
.long L$set$210
LASFDE210:
.long LASFDE210-EH_frame1
.long _lj_vm_record-.
.long 44
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE210:
_lj_vm_rethook.eh:
LSFDE211:
.set L$set$211,LEFDE211-LASFDE211
.long L$set$211
LASFDE211:
.long LASFDE211-EH_frame1
.long _lj_vm_rethook-.
.long 16
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE211:
_lj_vm_inshook.eh:
LSFDE212:
.set L$set$212,LEFDE212-LASFDE212
.long L$set$212
LASFDE212:
.long LASFDE212-EH_frame1
.long _lj_vm_inshook-.
.long 80
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE212:
_lj_cont_hook.eh:
LSFDE213:
.set L$set$213,LEFDE213-LASFDE213
.long L$set$213
LASFDE213:
.long LASFDE213-EH_frame1
.long _lj_cont_hook-.
.long 16
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE213:
_lj_vm_hotloop.eh:
LSFDE214:
.set L$set$214,LEFDE214-LASFDE214
.long L$set$214
LASFDE214:
.long LASFDE214-EH_frame1
.long _lj_vm_hotloop-.
.long 52
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE214:
_lj_vm_callhook.eh:
LSFDE215:
.set L$set$215,LEFDE215-LASFDE215
.long L$set$215
LASFDE215:
.long LASFDE215-EH_frame1
.long _lj_vm_callhook-.
.long 8
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE215:
_lj_vm_hotcall.eh:
LSFDE216:
.set L$set$216,LEFDE216-LASFDE216
.long L$set$216
LASFDE216:
.long LASFDE216-EH_frame1
.long _lj_vm_hotcall-.
.long 60
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE216:
_lj_cont_stitch.eh:
LSFDE217:
.set L$set$217,LEFDE217-LASFDE217
.long L$set$217
LASFDE217:
.long LASFDE217-EH_frame1
.long _lj_cont_stitch-.
.long 148
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE217:
_lj_vm_profhook.eh:
LSFDE218:
.set L$set$218,LEFDE218-LASFDE218
.long L$set$218
LASFDE218:
.long LASFDE218-EH_frame1
.long _lj_vm_profhook-.
.long 28
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE218:
_lj_vm_exit_handler.eh:
LSFDE219:
.set L$set$219,LEFDE219-LASFDE219
.long L$set$219
LASFDE219:
.long LASFDE219-EH_frame1
.long _lj_vm_exit_handler-.
.long 232
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE219:
_lj_vm_exit_interp.eh:
LSFDE220:
.set L$set$220,LEFDE220-LASFDE220
.long L$set$220
LASFDE220:
.long LASFDE220-EH_frame1
.long _lj_vm_exit_interp-.
.long 188
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE220:
_lj_vm_modi.eh:
LSFDE221:
.set L$set$221,LEFDE221-LASFDE221
.long L$set$221
LASFDE221:
.long LASFDE221-EH_frame1
.long _lj_vm_modi-.
.long 60
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE221:
_lj_vm_ffi_callback.eh:
LSFDE222:
.set L$set$222,LEFDE222-LASFDE222
.long L$set$222
LASFDE222:
.long LASFDE222-EH_frame1
.long _lj_vm_ffi_callback-.
.long 180
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE222:
_lj_cont_ffi_callback.eh:
LSFDE223:
.set L$set$223,LEFDE223-LASFDE223
.long L$set$223
LASFDE223:
.long LASFDE223-EH_frame1
.long _lj_cont_ffi_callback-.
.long 36
.byte 0
.byte 0xe
.byte 208
.byte 1
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.byte 0x95
.byte 5
.byte 0x96
.byte 6
.byte 0x97
.byte 7
.byte 0x98
.byte 8
.byte 0x99
.byte 9
.byte 0x9a
.byte 10
.byte 0x9b
.byte 11
.byte 0x9c
.byte 12
.byte 5
.byte 0x48
.byte 13
.byte 5
.byte 0x49
.byte 14
.byte 5
.byte 0x4a
.byte 15
.byte 5
.byte 0x4b
.byte 16
.byte 5
.byte 0x4c
.byte 17
.byte 5
.byte 0x4d
.byte 18
.byte 5
.byte 0x4e
.byte 19
.byte 5
.byte 0x4f
.byte 20
.align 3
LEFDE223:
EH_frame2:
.set L$set$y,LECIEY-LSCIEY
.long L$set$y
LSCIEY:
.long 0
.byte 0x1
.ascii "zR\0"
.byte 0x1
.byte 128-8
.byte 30
.byte 1
.byte 0x1b
.byte 0xc
.byte 31
.byte 0
.align 3
LECIEY:
_lj_vm_ffi_call.eh:
LSFDEY:
.set L$set$yy,LEFDEY-LASFDEY
.long L$set$yy
LASFDEY:
.long LASFDEY-EH_frame2
.long _lj_vm_ffi_call-.
.long 128
.byte 0
.byte 0xe
.byte 32
.byte 0x9e
.byte 1
.byte 0x9d
.byte 2
.byte 0x93
.byte 3
.byte 0x94
.byte 4
.align 3
LEFDEY:
.subsections_via_symbols
==== Building LuaJIT 2.1.0-beta3 ====
/Library/Developer/CommandLineTools/usr/bin/make -C src
gcc -g -Wall -I. -DLUAJIT_TARGET=LUAJIT_ARCH_arm64 -DLJ_ARCH_HASFPU=1 -DLJ_ABI_SOFTFP=0 -c -o host/minilua.o host/minilua.c
gcc -g -o host/minilua host/minilua.o -lm
host/minilua ../dynasm/dynasm.lua -D ENDIAN_LE -D P64 -D JIT -D FFI -D DUALNUM -D FPU -D HFABI -D VER=80 -o host/buildvm_arch.h vm_arm64.dasc
gcc -g -Wall -I. -DLUAJIT_TARGET=LUAJIT_ARCH_arm64 -DLJ_ARCH_HASFPU=1 -DLJ_ABI_SOFTFP=0 -c -o host/buildvm.o host/buildvm.c
gcc -g -Wall -I. -DLUAJIT_TARGET=LUAJIT_ARCH_arm64 -DLJ_ARCH_HASFPU=1 -DLJ_ABI_SOFTFP=0 -c -o host/buildvm_asm.o host/buildvm_asm.c
gcc -g -Wall -I. -DLUAJIT_TARGET=LUAJIT_ARCH_arm64 -DLJ_ARCH_HASFPU=1 -DLJ_ABI_SOFTFP=0 -c -o host/buildvm_peobj.o host/buildvm_peobj.c
gcc -g -Wall -I. -DLUAJIT_TARGET=LUAJIT_ARCH_arm64 -DLJ_ARCH_HASFPU=1 -DLJ_ABI_SOFTFP=0 -c -o host/buildvm_lib.o host/buildvm_lib.c
gcc -g -Wall -I. -DLUAJIT_TARGET=LUAJIT_ARCH_arm64 -DLJ_ARCH_HASFPU=1 -DLJ_ABI_SOFTFP=0 -c -o host/buildvm_fold.o host/buildvm_fold.c
gcc -g -o host/buildvm host/buildvm.o host/buildvm_asm.o host/buildvm_peobj.o host/buildvm_lib.o host/buildvm_fold.o
host/buildvm -m machasm -o lj_vm.S
gcc -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_vm.o lj_vm.S
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_assert.o lj_assert.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_gc.o lj_gc.c
host/buildvm -m ffdef -o lj_ffdef.h lib_base.c lib_math.c lib_bit.c lib_string.c lib_table.c lib_io.c lib_os.c lib_package.c lib_debug.c lib_jit.c lib_ffi.c lib_buffer.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_err.o lj_err.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_char.o lj_char.c
host/buildvm -m bcdef -o lj_bcdef.h lib_base.c lib_math.c lib_bit.c lib_string.c lib_table.c lib_io.c lib_os.c lib_package.c lib_debug.c lib_jit.c lib_ffi.c lib_buffer.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_bc.o lj_bc.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_obj.o lj_obj.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_buf.o lj_buf.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_str.o lj_str.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_tab.o lj_tab.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_func.o lj_func.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_udata.o lj_udata.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_meta.o lj_meta.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_debug.o lj_debug.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_prng.o lj_prng.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_state.o lj_state.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_dispatch.o lj_dispatch.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_vmevent.o lj_vmevent.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_vmmath.o lj_vmmath.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_strscan.o lj_strscan.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_strfmt.o lj_strfmt.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_strfmt_num.o lj_strfmt_num.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_serialize.o lj_serialize.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_api.o lj_api.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_profile.o lj_profile.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_lex.o lj_lex.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_parse.o lj_parse.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_bcread.o lj_bcread.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_bcwrite.o lj_bcwrite.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_load.o lj_load.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_ir.o lj_ir.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_opt_mem.o lj_opt_mem.c
host/buildvm -m folddef -o lj_folddef.h lj_opt_fold.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_opt_fold.o lj_opt_fold.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_opt_narrow.o lj_opt_narrow.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_opt_dce.o lj_opt_dce.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_opt_loop.o lj_opt_loop.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_opt_split.o lj_opt_split.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_opt_sink.o lj_opt_sink.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_mcode.o lj_mcode.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_snap.o lj_snap.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_record.o lj_record.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_crecord.o lj_crecord.c
host/buildvm -m recdef -o lj_recdef.h lib_base.c lib_math.c lib_bit.c lib_string.c lib_table.c lib_io.c lib_os.c lib_package.c lib_debug.c lib_jit.c lib_ffi.c lib_buffer.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_ffrecord.o lj_ffrecord.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_asm.o lj_asm.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_trace.o lj_trace.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_gdbjit.o lj_gdbjit.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_ctype.o lj_ctype.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_cdata.o lj_cdata.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_cconv.o lj_cconv.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_ccall.o lj_ccall.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_ccallback.o lj_ccallback.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_carith.o lj_carith.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_clib.o lj_clib.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_cparse.o lj_cparse.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_lib.o lj_lib.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lj_alloc.o lj_alloc.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lib_aux.o lib_aux.c
host/buildvm -m libdef -o lj_libdef.h lib_base.c lib_math.c lib_bit.c lib_string.c lib_table.c lib_io.c lib_os.c lib_package.c lib_debug.c lib_jit.c lib_ffi.c lib_buffer.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lib_base.o lib_base.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lib_math.o lib_math.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lib_bit.o lib_bit.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lib_string.o lib_string.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lib_table.o lib_table.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lib_io.o lib_io.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lib_os.o lib_os.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lib_package.o lib_package.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lib_debug.o lib_debug.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lib_jit.o lib_jit.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lib_ffi.o lib_ffi.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lib_buffer.o lib_buffer.c
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o lib_init.o lib_init.c
ar rcus 2>/dev/null libluajit.a lj_vm.o lj_assert.o lj_gc.o lj_err.o lj_char.o lj_bc.o lj_obj.o lj_buf.o lj_str.o lj_tab.o lj_func.o lj_udata.o lj_meta.o lj_debug.o lj_prng.o lj_state.o lj_dispatch.o lj_vmevent.o lj_vmmath.o lj_strscan.o lj_strfmt.o lj_strfmt_num.o lj_serialize.o lj_api.o lj_profile.o lj_lex.o lj_parse.o lj_bcread.o lj_bcwrite.o lj_load.o lj_ir.o lj_opt_mem.o lj_opt_fold.o lj_opt_narrow.o lj_opt_dce.o lj_opt_loop.o lj_opt_split.o lj_opt_sink.o lj_mcode.o lj_snap.o lj_record.o lj_crecord.o lj_ffrecord.o lj_asm.o lj_trace.o lj_gdbjit.o lj_ctype.o lj_cdata.o lj_cconv.o lj_ccall.o lj_ccallback.o lj_carith.o lj_clib.o lj_cparse.o lj_lib.o lj_alloc.o lib_aux.o lib_base.o lib_math.o lib_bit.o lib_string.o lib_table.o lib_io.o lib_os.o lib_package.o lib_debug.o lib_jit.o lib_ffi.o lib_buffer.o lib_init.o
gcc -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -U_FORTIFY_SOURCE -DLUA_MULTILIB=\"lib\" -fno-stack-protector -DLUAJIT_UNWIND_EXTERNAL -c -o luajit.o luajit.c
host/buildvm -m vmdef -o jit/vmdef.lua lib_base.c lib_math.c lib_bit.c lib_string.c lib_table.c lib_io.c lib_os.c lib_package.c lib_debug.c lib_jit.c lib_ffi.c lib_buffer.c
gcc -g -dynamiclib -single_module -undefined dynamic_lookup -fPIC -install_name /usr/local/lib/libluajit-5.1.2.dylib -compatibility_version 2.1 -current_version 2.1.0 -o libluajit.so lj_vm.o lj_assert.o lj_gc.o lj_err.o lj_char.o lj_bc.o lj_obj.o lj_buf.o lj_str.o lj_tab.o lj_func.o lj_udata.o lj_meta.o lj_debug.o lj_prng.o lj_state.o lj_dispatch.o lj_vmevent.o lj_vmmath.o lj_strscan.o lj_strfmt.o lj_strfmt_num.o lj_serialize.o lj_api.o lj_profile.o lj_lex.o lj_parse.o lj_bcread.o lj_bcwrite.o lj_load.o lj_ir.o lj_opt_mem.o lj_opt_fold.o lj_opt_narrow.o lj_opt_dce.o lj_opt_loop.o lj_opt_split.o lj_opt_sink.o lj_mcode.o lj_snap.o lj_record.o lj_crecord.o lj_ffrecord.o lj_asm.o lj_trace.o lj_gdbjit.o lj_ctype.o lj_cdata.o lj_cconv.o lj_ccall.o lj_ccallback.o lj_carith.o lj_clib.o lj_cparse.o lj_lib.o lj_alloc.o lib_aux.o lib_base.o lib_math.o lib_bit.o lib_string.o lib_table.o lib_io.o lib_os.o lib_package.o lib_debug.o lib_jit.o lib_ffi.o lib_buffer.o lib_init.o -lm
ld: warning: could not create compact unwind for _lj_BC_ISLT: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISGE: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISLE: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISGT: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISEQV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISNEV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISEQS: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISNES: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISEQN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISNEN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISEQP: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISNEP: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISTC: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISFC: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_IST: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISF: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISTYPE: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISNUM: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_MOV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_NOT: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_UNM: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_LEN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ADDVN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_SUBVN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_MULVN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_DIVVN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_MODVN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ADDNV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_SUBNV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_MULNV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_DIVNV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_MODNV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ADDVV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_SUBVV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_MULVV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_DIVVV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_MODVV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_POW: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_CAT: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_KSTR: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_KCDATA: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_KSHORT: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_KNUM: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_KPRI: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_KNIL: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_UGET: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_USETV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_USETS: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_USETN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_USETP: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_UCLO: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_FNEW: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TNEW: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TDUP: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_GGET: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_GSET: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TGETV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TGETS: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TGETB: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TGETR: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TSETV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TSETS: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TSETB: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TSETM: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TSETR: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_CALLM: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_CALL: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_CALLMT: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_CALLT: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ITERC: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ITERN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_VARG: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISNEXT: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_RETM: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_RET: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_RET0: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_RET1: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_FORI: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_JFORI: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_FORL: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_IFORL: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_JFORL: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ITERL: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_IITERL: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_JITERL: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_LOOP: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ILOOP: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_JLOOP: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_JMP: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_FUNCF: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_IFUNCF: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_JFUNCF: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_FUNCV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_JFUNCV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_FUNCC: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_FUNCCW: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_returnp: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_returnc: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_return: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_leave_cp: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_leave_unw: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_unwind_c: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_unwind_c_eh: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_unwind_ff: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_unwind_ff_eh: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_growstack_c: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_growstack_l: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_resume: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_pcall: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_call: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_call_dispatch: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_call_dispatch_f: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_cpcall: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_dispatch: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_cat: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tgets1: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tgets: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tgetb: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tgetv: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tgetr: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tsets1: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tsets: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tsetb: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tsetv: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tsetr: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_comp: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_nop: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_ra: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_condt: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_condf: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_equal: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_equal_cd: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_istype: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_arith_vn: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_arith_nv: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_unm: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_arith_vv: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_binop: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_len: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_call: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_callt: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_for: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_assert: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_type: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_getmetatable: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_setmetatable: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_rawget: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_tonumber: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_tostring: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_next: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_pairs: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_ipairs_aux: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_ipairs: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_pcall: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_xpcall: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_coroutine_resume: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_coroutine_wrap_aux: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_coroutine_yield: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_floor: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_ceil: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_abs: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_fff_restv: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_fff_res1: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_fff_res: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_sqrt: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_fff_resn: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_log: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_log10: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_exp: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_sin: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_cos: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_tan: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_asin: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_acos: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_atan: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_sinh: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_cosh: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_tanh: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_pow: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_atan2: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_fmod: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_ldexp: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_frexp: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_modf: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_min: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_max: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_string_byte: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_string_char: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_fff_newstr: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_fff_resstr: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_string_sub: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_string_reverse: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_string_lower: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_string_upper: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_tobit_fb: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_band: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_bor: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_bxor: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_tobit: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_bswap: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_bnot: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_lshift: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_rshift: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_arshift: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_rol: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_ror: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_fff_fallback: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_call_tail: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_fff_gcstep: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_record: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_rethook: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_inshook: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_hook: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_hotloop: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_callhook: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_hotcall: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_stitch: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_profhook: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_exit_handler: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_exit_interp: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_modi: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_ffi_callback: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_ffi_callback: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_ffi_call: registers 19 not saved contiguously in frame
gcc -g -o luajit luajit.o libluajit.a -lm
ld: warning: could not create compact unwind for _lj_BC_ISLT: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISGE: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISLE: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISGT: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISEQV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISNEV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISEQS: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISNES: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISEQN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISNEN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISEQP: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISNEP: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISTC: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISFC: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_IST: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISF: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISTYPE: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISNUM: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_MOV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_NOT: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_UNM: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_LEN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ADDVN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_SUBVN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_MULVN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_DIVVN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_MODVN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ADDNV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_SUBNV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_MULNV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_DIVNV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_MODNV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ADDVV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_SUBVV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_MULVV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_DIVVV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_MODVV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_POW: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_CAT: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_KSTR: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_KCDATA: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_KSHORT: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_KNUM: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_KPRI: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_KNIL: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_UGET: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_USETV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_USETS: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_USETN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_USETP: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_UCLO: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_FNEW: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TNEW: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TDUP: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_GGET: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_GSET: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TGETV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TGETS: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TGETB: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TGETR: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TSETV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TSETS: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TSETB: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TSETM: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_TSETR: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_CALLM: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_CALL: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_CALLMT: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_CALLT: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ITERC: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ITERN: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_VARG: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ISNEXT: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_RETM: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_RET: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_RET0: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_RET1: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_FORI: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_JFORI: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_FORL: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_IFORL: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_JFORL: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ITERL: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_IITERL: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_JITERL: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_LOOP: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_ILOOP: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_JLOOP: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_JMP: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_FUNCF: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_IFUNCF: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_JFUNCF: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_FUNCV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_JFUNCV: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_FUNCC: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_BC_FUNCCW: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_returnp: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_returnc: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_return: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_leave_cp: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_leave_unw: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_unwind_c: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_unwind_c_eh: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_unwind_ff: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_unwind_ff_eh: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_growstack_c: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_growstack_l: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_resume: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_pcall: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_call: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_call_dispatch: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_call_dispatch_f: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_cpcall: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_dispatch: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_cat: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tgets1: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tgets: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tgetb: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tgetv: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tgetr: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tsets1: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tsets: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tsetb: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tsetv: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_tsetr: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_comp: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_nop: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_ra: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_condt: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_condf: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_equal: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_equal_cd: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_istype: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_arith_vn: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_arith_nv: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_unm: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_arith_vv: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_binop: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_len: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_call: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_callt: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vmeta_for: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_assert: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_type: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_getmetatable: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_setmetatable: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_rawget: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_tonumber: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_tostring: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_next: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_pairs: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_ipairs_aux: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_ipairs: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_pcall: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_xpcall: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_coroutine_resume: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_coroutine_wrap_aux: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_coroutine_yield: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_floor: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_ceil: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_abs: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_fff_restv: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_fff_res1: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_fff_res: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_sqrt: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_fff_resn: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_log: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_log10: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_exp: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_sin: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_cos: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_tan: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_asin: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_acos: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_atan: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_sinh: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_cosh: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_tanh: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_pow: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_atan2: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_fmod: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_ldexp: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_frexp: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_modf: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_min: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_math_max: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_string_byte: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_string_char: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_fff_newstr: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_fff_resstr: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_string_sub: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_string_reverse: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_string_lower: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_string_upper: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_tobit_fb: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_band: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_bor: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_bxor: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_tobit: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_bswap: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_bnot: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_lshift: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_rshift: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_arshift: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_rol: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_ff_bit_ror: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_fff_fallback: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_call_tail: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_fff_gcstep: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_record: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_rethook: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_inshook: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_hook: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_hotloop: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_callhook: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_hotcall: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_stitch: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_profhook: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_exit_handler: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_exit_interp: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_modi: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_ffi_callback: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_cont_ffi_callback: registers 78 not saved contiguously in frame
ld: warning: could not create compact unwind for _lj_vm_ffi_call: registers 19 not saved contiguously in frame
Undefined symbols for architecture arm64:
"ltmp0", referenced from:
Dwarf Exception Unwind Info (__eh_frame) in libluajit.a(lj_vm.o)
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[1]: *** [luajit] Error 1
make: *** [default] Error 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment