diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/bc.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/bc.lua index 8d0844c0..f1a63b9c 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/bc.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/bc.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT bytecode listing module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -41,7 +41,6 @@ -- Cache some library functions and objects. local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") local jutil = require("jit.util") local vmdef = require("jit.vmdef") local bit = require("bit") diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/bcsave.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/bcsave.lua index 90fe9daf..390d297c 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/bcsave.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/bcsave.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT module to save/list bytecode. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -11,7 +11,7 @@ ------------------------------------------------------------------------------ local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") +assert(jit.version_num == 20199, "LuaJIT core/library version mismatch") local bit = require("bit") -- Symbol name prefix for LuaJIT bytecode. @@ -38,7 +38,7 @@ Save LuaJIT bytecode: luajit -b[options] input output -- Stop handling options. - Use stdin as input and/or stdout as output. -File types: c h obj o raw (default) +File types: c cc h obj o raw (default) ]] os.exit(1) end @@ -81,7 +81,7 @@ end ------------------------------------------------------------------------------ local map_type = { - raw = "raw", c = "c", h = "h", o = "obj", obj = "obj", + raw = "raw", c = "c", cc = "c", h = "h", o = "obj", obj = "obj", } local map_arch = { diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_arm.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_arm.lua index 18ab68df..a7546a45 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_arm.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_arm.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT ARM disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This is a helper module used by the LuaJIT machine code dumper module. diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_arm64.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_arm64.lua index 531584a1..84677666 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_arm64.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_arm64.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT ARM64 disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h -- -- Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. @@ -107,24 +107,20 @@ local map_logsr = { -- Logical, shifted register. [0] = { shift = 29, mask = 3, [0] = { - shift = 21, mask = 7, - [0] = "andDNMSg", "bicDNMSg", "andDNMSg", "bicDNMSg", - "andDNMSg", "bicDNMSg", "andDNMg", "bicDNMg" + shift = 21, mask = 1, + [0] = "andDNMSg", "bicDNMSg" }, { - shift = 21, mask = 7, - [0] ="orr|movDN0MSg", "orn|mvnDN0MSg", "orr|movDN0MSg", "orn|mvnDN0MSg", - "orr|movDN0MSg", "orn|mvnDN0MSg", "orr|movDN0Mg", "orn|mvnDN0Mg" + shift = 21, mask = 1, + [0] = "orr|movDN0MSg", "orn|mvnDN0MSg" }, { - shift = 21, mask = 7, - [0] = "eorDNMSg", "eonDNMSg", "eorDNMSg", "eonDNMSg", - "eorDNMSg", "eonDNMSg", "eorDNMg", "eonDNMg" + shift = 21, mask = 1, + [0] = "eorDNMSg", "eonDNMSg" }, { - shift = 21, mask = 7, - [0] = "ands|tstD0NMSg", "bicsDNMSg", "ands|tstD0NMSg", "bicsDNMSg", - "ands|tstD0NMSg", "bicsDNMSg", "ands|tstD0NMg", "bicsDNMg" + shift = 21, mask = 1, + [0] = "ands|tstD0NMSg", "bicsDNMSg" } }, false -- unallocated @@ -132,24 +128,20 @@ local map_logsr = { -- Logical, shifted register. { shift = 29, mask = 3, [0] = { - shift = 21, mask = 7, - [0] = "andDNMSg", "bicDNMSg", "andDNMSg", "bicDNMSg", - "andDNMSg", "bicDNMSg", "andDNMg", "bicDNMg" + shift = 21, mask = 1, + [0] = "andDNMSg", "bicDNMSg" }, { - shift = 21, mask = 7, - [0] = "orr|movDN0MSg", "orn|mvnDN0MSg", "orr|movDN0MSg", "orn|mvnDN0MSg", - "orr|movDN0MSg", "orn|mvnDN0MSg", "orr|movDN0Mg", "orn|mvnDN0Mg" + shift = 21, mask = 1, + [0] = "orr|movDN0MSg", "orn|mvnDN0MSg" }, { - shift = 21, mask = 7, - [0] = "eorDNMSg", "eonDNMSg", "eorDNMSg", "eonDNMSg", - "eorDNMSg", "eonDNMSg", "eorDNMg", "eonDNMg" + shift = 21, mask = 1, + [0] = "eorDNMSg", "eonDNMSg" }, { - shift = 21, mask = 7, - [0] = "ands|tstD0NMSg", "bicsDNMSg", "ands|tstD0NMSg", "bicsDNMSg", - "ands|tstD0NMSg", "bicsDNMSg", "ands|tstD0NMg", "bicsDNMg" + shift = 21, mask = 1, + [0] = "ands|tstD0NMSg", "bicsDNMSg" } } } @@ -735,7 +727,7 @@ local map_cond = { "hi", "ls", "ge", "lt", "gt", "le", "al", } -local map_shift = { [0] = "lsl", "lsr", "asr", } +local map_shift = { [0] = "lsl", "lsr", "asr", "ror"} local map_extend = { [0] = "uxtb", "uxth", "uxtw", "uxtx", "sxtb", "sxth", "sxtw", "sxtx", @@ -956,7 +948,7 @@ local function disass_ins(ctx) elseif p == "U" then local rn = map_regs.x[band(rshift(op, 5), 31)] local sz = band(rshift(op, 30), 3) - local imm12 = lshift(arshift(lshift(op, 10), 20), sz) + local imm12 = lshift(rshift(lshift(op, 10), 20), sz) if imm12 ~= 0 then x = "["..rn..", #"..imm12.."]" else @@ -993,8 +985,7 @@ local function disass_ins(ctx) x = x.."]" end elseif p == "P" then - local opcv, sh = rshift(op, 26), 2 - if opcv >= 0x2a then sh = 4 elseif opcv >= 0x1b then sh = 3 end + local sh = 2 + rshift(op, 31 - band(rshift(op, 26), 1)) local imm7 = lshift(arshift(lshift(op, 10), 25), sh) local rn = map_regs.x[band(rshift(op, 5), 31)] local ind = band(rshift(op, 23), 3) diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_arm64be.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_arm64be.lua index 7337f5b7..f7a56352 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_arm64be.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_arm64be.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT ARM64BE disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- ARM64 instructions are always little-endian. So just forward to the diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips.lua index 05dc30fd..b0e99df4 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT/X license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This is a helper module used by the LuaJIT machine code dumper module. diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips64.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips64.lua index 1236e524..5f3a4dab 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips64.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips64.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS64 disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the big-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips64el.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips64el.lua index 7c478d2d..ea513649 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips64el.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips64el.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS64EL disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the little-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips64r6.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips64r6.lua index c5789ce4..1d948411 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips64r6.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips64r6.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS64R6 disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the r6 big-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips64r6el.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips64r6el.lua index f67f6240..26592e17 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips64r6el.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mips64r6el.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS64R6EL disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the r6 little-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mipsel.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mipsel.lua index a4fa6c60..6906a779 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mipsel.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_mipsel.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPSEL disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the little-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_ppc.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_ppc.lua index 8f65f25a..95c3da84 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_ppc.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_ppc.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT PPC disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT/X license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This is a helper module used by the LuaJIT machine code dumper module. diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_x64.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_x64.lua index d076c6ae..eb21f044 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_x64.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_x64.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT x64 disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the 64 bit functions from the combined diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_x86.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_x86.lua index 84492fff..40b8218e 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_x86.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dis_x86.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT x86/x64 disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This is a helper module used by the LuaJIT machine code dumper module. diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dump.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dump.lua index 18e7a4b7..746732f9 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dump.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/dump.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT compiler dump module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -55,7 +55,6 @@ -- Cache some library functions and objects. local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") local jutil = require("jit.util") local vmdef = require("jit.vmdef") local funcinfo, funcbc = jutil.funcinfo, jutil.funcbc diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/p.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/p.lua index f225c312..36f836c5 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/p.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/p.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT profiler. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -41,7 +41,6 @@ -- Cache some library functions and objects. local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") local profile = require("jit.profile") local vmdef = require("jit.vmdef") local math = math diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/v.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/v.lua index ac8b19db..8e91f494 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/v.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/v.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- Verbose mode of the LuaJIT compiler. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -59,7 +59,6 @@ -- Cache some library functions and objects. local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") local jutil = require("jit.util") local vmdef = require("jit.vmdef") local funcinfo, traceinfo = jutil.funcinfo, jutil.traceinfo diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/vmdef.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/vmdef.lua index 9ed150be..ef31b783 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/vmdef.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/vmdef.lua @@ -1,394 +1,396 @@ --- This is a generated file. DO NOT EDIT! - -return { - -bcnames = "ISLT ISGE ISLE ISGT ISEQV ISNEV ISEQS ISNES ISEQN ISNEN ISEQP ISNEP ISTC ISFC IST ISF ISTYPEISNUM MOV NOT UNM LEN ADDVN SUBVN MULVN DIVVN MODVN ADDNV SUBNV MULNV DIVNV MODNV ADDVV SUBVV MULVV DIVVV MODVV POW CAT KSTR KCDATAKSHORTKNUM KPRI KNIL UGET USETV USETS USETN USETP UCLO FNEW TNEW TDUP GGET GSET TGETV TGETS TGETB TGETR TSETV TSETS TSETB TSETM TSETR CALLM CALL CALLMTCALLT ITERC ITERN VARG ISNEXTRETM RET RET0 RET1 FORI JFORI FORL IFORL JFORL ITERL IITERLJITERLLOOP ILOOP JLOOP JMP FUNCF IFUNCFJFUNCFFUNCV IFUNCVJFUNCVFUNCC FUNCCW", - -irnames = "LT GE LE GT ULT UGE ULE UGT EQ NE ABC RETF NOP BASE PVAL GCSTEPHIOP LOOP USE PHI RENAMEPROF KPRI KINT KGC KPTR KKPTR KNULL KNUM KINT64KSLOT BNOT BSWAP BAND BOR BXOR BSHL BSHR BSAR BROL BROR ADD SUB MUL DIV MOD POW NEG ABS LDEXP MIN MAX FPMATHADDOV SUBOV MULOV AREF HREFK HREF NEWREFUREFO UREFC FREF TMPREFSTRREFLREF ALOAD HLOAD ULOAD FLOAD XLOAD SLOAD VLOAD ALEN ASTOREHSTOREUSTOREFSTOREXSTORESNEW XSNEW TNEW TDUP CNEW CNEWI BUFHDRBUFPUTBUFSTRTBAR OBAR XBAR CONV TOBIT TOSTR STRTO CALLN CALLA CALLL CALLS CALLXSCARG ", - -irfpm = { [0]="floor", "ceil", "trunc", "sqrt", "log", "log2", "other", }, - -irfield = { [0]="str.len", "func.env", "func.pc", "func.ffid", "thread.env", "tab.meta", "tab.array", "tab.node", "tab.asize", "tab.hmask", "tab.nomm", "udata.meta", "udata.udtype", "udata.file", "sbuf.w", "sbuf.e", "sbuf.b", "sbuf.l", "sbuf.ref", "sbuf.r", "cdata.ctypeid", "cdata.ptr", "cdata.int", "cdata.int64", "cdata.int64_4", }, - -ircall = { -[0]="lj_str_cmp", -"lj_str_find", -"lj_str_new", -"lj_strscan_num", -"lj_strfmt_int", -"lj_strfmt_num", -"lj_strfmt_char", -"lj_strfmt_putint", -"lj_strfmt_putnum", -"lj_strfmt_putquoted", -"lj_strfmt_putfxint", -"lj_strfmt_putfnum_int", -"lj_strfmt_putfnum_uint", -"lj_strfmt_putfnum", -"lj_strfmt_putfstr", -"lj_strfmt_putfchar", -"lj_buf_putmem", -"lj_buf_putstr", -"lj_buf_putchar", -"lj_buf_putstr_reverse", -"lj_buf_putstr_lower", -"lj_buf_putstr_upper", -"lj_buf_putstr_rep", -"lj_buf_puttab", -"lj_bufx_set", -"lj_bufx_more", -"lj_serialize_put", -"lj_serialize_get", -"lj_serialize_encode", -"lj_serialize_decode", -"lj_buf_tostr", -"lj_tab_new_ah", -"lj_tab_new1", -"lj_tab_dup", -"lj_tab_clear", -"lj_tab_newkey", -"lj_tab_keyindex", -"lj_vm_next", -"lj_tab_len", -"lj_tab_len_hint", -"lj_gc_step_jit", -"lj_gc_barrieruv", -"lj_mem_newgco", -"lj_prng_u64d", -"lj_vm_modi", -"log10", -"exp", -"sin", -"cos", -"tan", -"asin", -"acos", -"atan", -"sinh", -"cosh", -"tanh", -"fputc", -"fwrite", -"fflush", -"lj_vm_floor", -"lj_vm_ceil", -"lj_vm_trunc", -"sqrt", -"log", -"lj_vm_log2", -"pow", -"atan2", -"ldexp", -"lj_vm_tobit", -"softfp_add", -"softfp_sub", -"softfp_mul", -"softfp_div", -"softfp_cmp", -"softfp_i2d", -"softfp_d2i", -"lj_vm_sfmin", -"lj_vm_sfmax", -"lj_vm_tointg", -"softfp_ui2d", -"softfp_f2d", -"softfp_d2ui", -"softfp_d2f", -"softfp_i2f", -"softfp_ui2f", -"softfp_f2i", -"softfp_f2ui", -"fp64_l2d", -"fp64_ul2d", -"fp64_l2f", -"fp64_ul2f", -"fp64_d2l", -"fp64_d2ul", -"fp64_f2l", -"fp64_f2ul", -"lj_carith_divi64", -"lj_carith_divu64", -"lj_carith_modi64", -"lj_carith_modu64", -"lj_carith_powi64", -"lj_carith_powu64", -"lj_cdata_newv", -"lj_cdata_setfin", -"strlen", -"memcpy", -"memset", -"lj_vm_errno", -"lj_carith_mul64", -"lj_carith_shl64", -"lj_carith_shr64", -"lj_carith_sar64", -"lj_carith_rol64", -"lj_carith_ror64", -}, - -traceerr = { -[0]="error thrown or hook called during recording", -"trace too short", -"trace too long", -"trace too deep", -"too many snapshots", -"blacklisted", -"retry recording", -"NYI: bytecode %d", -"leaving loop in root trace", -"inner loop in root trace", -"loop unroll limit reached", -"bad argument type", -"JIT compilation disabled for function", -"call unroll limit reached", -"down-recursion, restarting", -"NYI: unsupported variant of FastFunc %s", -"NYI: return to lower frame", -"store with nil or NaN key", -"missing metamethod", -"looping index lookup", -"NYI: mixed sparse/dense table", -"symbol not in cache", -"NYI: unsupported C type conversion", -"NYI: unsupported C function type", -"guard would always fail", -"too many PHIs", -"persistent type instability", -"failed to allocate mcode memory", -"machine code too long", -"hit mcode limit (retrying)", -"too many spill slots", -"inconsistent register allocation", -"NYI: cannot assemble IR instruction %d", -"NYI: PHI shuffling too complex", -"NYI: register coalescing too complex", -}, - -ffnames = { -[0]="Lua", -"C", -"assert", -"type", -"next", -"pairs", -"ipairs_aux", -"ipairs", -"getmetatable", -"setmetatable", -"getfenv", -"setfenv", -"rawget", -"rawset", -"rawequal", -"unpack", -"select", -"tonumber", -"tostring", -"error", -"pcall", -"xpcall", -"loadfile", -"load", -"loadstring", -"dofile", -"gcinfo", -"collectgarbage", -"newproxy", -"print", -"coroutine.status", -"coroutine.running", -"coroutine.isyieldable", -"coroutine.create", -"coroutine.yield", -"coroutine.resume", -"coroutine.wrap_aux", -"coroutine.wrap", -"math.abs", -"math.floor", -"math.ceil", -"math.sqrt", -"math.log10", -"math.exp", -"math.sin", -"math.cos", -"math.tan", -"math.asin", -"math.acos", -"math.atan", -"math.sinh", -"math.cosh", -"math.tanh", -"math.frexp", -"math.modf", -"math.log", -"math.atan2", -"math.pow", -"math.fmod", -"math.ldexp", -"math.min", -"math.max", -"math.random", -"math.randomseed", -"bit.tobit", -"bit.bnot", -"bit.bswap", -"bit.lshift", -"bit.rshift", -"bit.arshift", -"bit.rol", -"bit.ror", -"bit.band", -"bit.bor", -"bit.bxor", -"bit.tohex", -"string.byte", -"string.char", -"string.sub", -"string.rep", -"string.reverse", -"string.lower", -"string.upper", -"string.dump", -"string.find", -"string.match", -"string.gmatch_aux", -"string.gmatch", -"string.gsub", -"string.format", -"table.maxn", -"table.insert", -"table.concat", -"table.sort", -"table.new", -"table.clear", -"io.method.close", -"io.method.read", -"io.method.write", -"io.method.flush", -"io.method.seek", -"io.method.setvbuf", -"io.method.lines", -"io.method.__gc", -"io.method.__tostring", -"io.open", -"io.popen", -"io.tmpfile", -"io.close", -"io.read", -"io.write", -"io.flush", -"io.input", -"io.output", -"io.lines", -"io.type", -"os.execute", -"os.remove", -"os.rename", -"os.tmpname", -"os.getenv", -"os.exit", -"os.clock", -"os.date", -"os.time", -"os.difftime", -"os.setlocale", -"debug.getregistry", -"debug.getmetatable", -"debug.setmetatable", -"debug.getfenv", -"debug.setfenv", -"debug.getinfo", -"debug.getlocal", -"debug.setlocal", -"debug.getupvalue", -"debug.setupvalue", -"debug.upvalueid", -"debug.upvaluejoin", -"debug.sethook", -"debug.gethook", -"debug.debug", -"debug.traceback", -"jit.on", -"jit.off", -"jit.flush", -"jit.status", -"jit.security", -"jit.attach", -"jit.util.funcinfo", -"jit.util.funcbc", -"jit.util.funck", -"jit.util.funcuvname", -"jit.util.traceinfo", -"jit.util.traceir", -"jit.util.tracek", -"jit.util.tracesnap", -"jit.util.tracemc", -"jit.util.traceexitstub", -"jit.util.ircalladdr", -"jit.opt.start", -"jit.profile.start", -"jit.profile.stop", -"jit.profile.dumpstack", -"ffi.meta.__index", -"ffi.meta.__newindex", -"ffi.meta.__eq", -"ffi.meta.__len", -"ffi.meta.__lt", -"ffi.meta.__le", -"ffi.meta.__concat", -"ffi.meta.__call", -"ffi.meta.__add", -"ffi.meta.__sub", -"ffi.meta.__mul", -"ffi.meta.__div", -"ffi.meta.__mod", -"ffi.meta.__pow", -"ffi.meta.__unm", -"ffi.meta.__tostring", -"ffi.meta.__pairs", -"ffi.meta.__ipairs", -"ffi.clib.__index", -"ffi.clib.__newindex", -"ffi.clib.__gc", -"ffi.callback.free", -"ffi.callback.set", -"ffi.cdef", -"ffi.new", -"ffi.cast", -"ffi.typeof", -"ffi.typeinfo", -"ffi.istype", -"ffi.sizeof", -"ffi.alignof", -"ffi.offsetof", -"ffi.errno", -"ffi.string", -"ffi.copy", -"ffi.fill", -"ffi.abi", -"ffi.metatype", -"ffi.gc", -"ffi.load", -"buffer.method.free", -"buffer.method.reset", -"buffer.method.skip", -"buffer.method.set", -"buffer.method.put", -"buffer.method.putf", -"buffer.method.get", -"buffer.method.putcdata", -"buffer.method.reserve", -"buffer.method.commit", -"buffer.method.ref", -"buffer.method.encode", -"buffer.method.decode", -"buffer.method.__gc", -"buffer.method.__tostring", -"buffer.method.__len", -"buffer.new", -"buffer.encode", -"buffer.decode", -}, - -} - +-- This is a generated file. DO NOT EDIT! + +assert(require("jit").version == "LuaJIT 2.1.1700008891", "LuaJIT core/library version mismatch") + +return { + +bcnames = "ISLT ISGE ISLE ISGT ISEQV ISNEV ISEQS ISNES ISEQN ISNEN ISEQP ISNEP ISTC ISFC IST ISF ISTYPEISNUM MOV NOT UNM LEN ADDVN SUBVN MULVN DIVVN MODVN ADDNV SUBNV MULNV DIVNV MODNV ADDVV SUBVV MULVV DIVVV MODVV POW CAT KSTR KCDATAKSHORTKNUM KPRI KNIL UGET USETV USETS USETN USETP UCLO FNEW TNEW TDUP GGET GSET TGETV TGETS TGETB TGETR TSETV TSETS TSETB TSETM TSETR CALLM CALL CALLMTCALLT ITERC ITERN VARG ISNEXTRETM RET RET0 RET1 FORI JFORI FORL IFORL JFORL ITERL IITERLJITERLLOOP ILOOP JLOOP JMP FUNCF IFUNCFJFUNCFFUNCV IFUNCVJFUNCVFUNCC FUNCCW", + +irnames = "LT GE LE GT ULT UGE ULE UGT EQ NE ABC RETF NOP BASE PVAL GCSTEPHIOP LOOP USE PHI RENAMEPROF KPRI KINT KGC KPTR KKPTR KNULL KNUM KINT64KSLOT BNOT BSWAP BAND BOR BXOR BSHL BSHR BSAR BROL BROR ADD SUB MUL DIV MOD POW NEG ABS LDEXP MIN MAX FPMATHADDOV SUBOV MULOV AREF HREFK HREF NEWREFUREFO UREFC FREF TMPREFSTRREFLREF ALOAD HLOAD ULOAD FLOAD XLOAD SLOAD VLOAD ALEN ASTOREHSTOREUSTOREFSTOREXSTORESNEW XSNEW TNEW TDUP CNEW CNEWI BUFHDRBUFPUTBUFSTRTBAR OBAR XBAR CONV TOBIT TOSTR STRTO CALLN CALLA CALLL CALLS CALLXSCARG ", + +irfpm = { [0]="floor", "ceil", "trunc", "sqrt", "log", "log2", "other", }, + +irfield = { [0]="str.len", "func.env", "func.pc", "func.ffid", "thread.env", "tab.meta", "tab.array", "tab.node", "tab.asize", "tab.hmask", "tab.nomm", "udata.meta", "udata.udtype", "udata.file", "sbuf.w", "sbuf.e", "sbuf.b", "sbuf.l", "sbuf.ref", "sbuf.r", "cdata.ctypeid", "cdata.ptr", "cdata.int", "cdata.int64", "cdata.int64_4", }, + +ircall = { +[0]="lj_str_cmp", +"lj_str_find", +"lj_str_new", +"lj_strscan_num", +"lj_strfmt_int", +"lj_strfmt_num", +"lj_strfmt_char", +"lj_strfmt_putint", +"lj_strfmt_putnum", +"lj_strfmt_putquoted", +"lj_strfmt_putfxint", +"lj_strfmt_putfnum_int", +"lj_strfmt_putfnum_uint", +"lj_strfmt_putfnum", +"lj_strfmt_putfstr", +"lj_strfmt_putfchar", +"lj_buf_putmem", +"lj_buf_putstr", +"lj_buf_putchar", +"lj_buf_putstr_reverse", +"lj_buf_putstr_lower", +"lj_buf_putstr_upper", +"lj_buf_putstr_rep", +"lj_buf_puttab", +"lj_bufx_set", +"lj_bufx_more", +"lj_serialize_put", +"lj_serialize_get", +"lj_serialize_encode", +"lj_serialize_decode", +"lj_buf_tostr", +"lj_tab_new_ah", +"lj_tab_new1", +"lj_tab_dup", +"lj_tab_clear", +"lj_tab_newkey", +"lj_tab_keyindex", +"lj_vm_next", +"lj_tab_len", +"lj_tab_len_hint", +"lj_gc_step_jit", +"lj_gc_barrieruv", +"lj_mem_newgco", +"lj_prng_u64d", +"lj_vm_modi", +"log10", +"exp", +"sin", +"cos", +"tan", +"asin", +"acos", +"atan", +"sinh", +"cosh", +"tanh", +"fputc", +"fwrite", +"fflush", +"lj_vm_floor", +"lj_vm_ceil", +"lj_vm_trunc", +"sqrt", +"log", +"lj_vm_log2", +"pow", +"atan2", +"ldexp", +"lj_vm_tobit", +"softfp_add", +"softfp_sub", +"softfp_mul", +"softfp_div", +"softfp_cmp", +"softfp_i2d", +"softfp_d2i", +"lj_vm_sfmin", +"lj_vm_sfmax", +"lj_vm_tointg", +"softfp_ui2d", +"softfp_f2d", +"softfp_d2ui", +"softfp_d2f", +"softfp_i2f", +"softfp_ui2f", +"softfp_f2i", +"softfp_f2ui", +"fp64_l2d", +"fp64_ul2d", +"fp64_l2f", +"fp64_ul2f", +"fp64_d2l", +"fp64_d2ul", +"fp64_f2l", +"fp64_f2ul", +"lj_carith_divi64", +"lj_carith_divu64", +"lj_carith_modi64", +"lj_carith_modu64", +"lj_carith_powi64", +"lj_carith_powu64", +"lj_cdata_newv", +"lj_cdata_setfin", +"strlen", +"memcpy", +"memset", +"lj_vm_errno", +"lj_carith_mul64", +"lj_carith_shl64", +"lj_carith_shr64", +"lj_carith_sar64", +"lj_carith_rol64", +"lj_carith_ror64", +}, + +traceerr = { +[0]="error thrown or hook called during recording", +"trace too short", +"trace too long", +"trace too deep", +"too many snapshots", +"blacklisted", +"retry recording", +"NYI: bytecode %d", +"leaving loop in root trace", +"inner loop in root trace", +"loop unroll limit reached", +"bad argument type", +"JIT compilation disabled for function", +"call unroll limit reached", +"down-recursion, restarting", +"NYI: unsupported variant of FastFunc %s", +"NYI: return to lower frame", +"store with nil or NaN key", +"missing metamethod", +"looping index lookup", +"NYI: mixed sparse/dense table", +"symbol not in cache", +"NYI: unsupported C type conversion", +"NYI: unsupported C function type", +"guard would always fail", +"too many PHIs", +"persistent type instability", +"failed to allocate mcode memory", +"machine code too long", +"hit mcode limit (retrying)", +"too many spill slots", +"inconsistent register allocation", +"NYI: cannot assemble IR instruction %d", +"NYI: PHI shuffling too complex", +"NYI: register coalescing too complex", +}, + +ffnames = { +[0]="Lua", +"C", +"assert", +"type", +"next", +"pairs", +"ipairs_aux", +"ipairs", +"getmetatable", +"setmetatable", +"getfenv", +"setfenv", +"rawget", +"rawset", +"rawequal", +"unpack", +"select", +"tonumber", +"tostring", +"error", +"pcall", +"xpcall", +"loadfile", +"load", +"loadstring", +"dofile", +"gcinfo", +"collectgarbage", +"newproxy", +"print", +"coroutine.status", +"coroutine.running", +"coroutine.isyieldable", +"coroutine.create", +"coroutine.yield", +"coroutine.resume", +"coroutine.wrap_aux", +"coroutine.wrap", +"math.abs", +"math.floor", +"math.ceil", +"math.sqrt", +"math.log10", +"math.exp", +"math.sin", +"math.cos", +"math.tan", +"math.asin", +"math.acos", +"math.atan", +"math.sinh", +"math.cosh", +"math.tanh", +"math.frexp", +"math.modf", +"math.log", +"math.atan2", +"math.pow", +"math.fmod", +"math.ldexp", +"math.min", +"math.max", +"math.random", +"math.randomseed", +"bit.tobit", +"bit.bnot", +"bit.bswap", +"bit.lshift", +"bit.rshift", +"bit.arshift", +"bit.rol", +"bit.ror", +"bit.band", +"bit.bor", +"bit.bxor", +"bit.tohex", +"string.byte", +"string.char", +"string.sub", +"string.rep", +"string.reverse", +"string.lower", +"string.upper", +"string.dump", +"string.find", +"string.match", +"string.gmatch_aux", +"string.gmatch", +"string.gsub", +"string.format", +"table.maxn", +"table.insert", +"table.concat", +"table.sort", +"table.new", +"table.clear", +"io.method.close", +"io.method.read", +"io.method.write", +"io.method.flush", +"io.method.seek", +"io.method.setvbuf", +"io.method.lines", +"io.method.__gc", +"io.method.__tostring", +"io.open", +"io.popen", +"io.tmpfile", +"io.close", +"io.read", +"io.write", +"io.flush", +"io.input", +"io.output", +"io.lines", +"io.type", +"os.execute", +"os.remove", +"os.rename", +"os.tmpname", +"os.getenv", +"os.exit", +"os.clock", +"os.date", +"os.time", +"os.difftime", +"os.setlocale", +"debug.getregistry", +"debug.getmetatable", +"debug.setmetatable", +"debug.getfenv", +"debug.setfenv", +"debug.getinfo", +"debug.getlocal", +"debug.setlocal", +"debug.getupvalue", +"debug.setupvalue", +"debug.upvalueid", +"debug.upvaluejoin", +"debug.sethook", +"debug.gethook", +"debug.debug", +"debug.traceback", +"jit.on", +"jit.off", +"jit.flush", +"jit.status", +"jit.security", +"jit.attach", +"jit.util.funcinfo", +"jit.util.funcbc", +"jit.util.funck", +"jit.util.funcuvname", +"jit.util.traceinfo", +"jit.util.traceir", +"jit.util.tracek", +"jit.util.tracesnap", +"jit.util.tracemc", +"jit.util.traceexitstub", +"jit.util.ircalladdr", +"jit.opt.start", +"jit.profile.start", +"jit.profile.stop", +"jit.profile.dumpstack", +"ffi.meta.__index", +"ffi.meta.__newindex", +"ffi.meta.__eq", +"ffi.meta.__len", +"ffi.meta.__lt", +"ffi.meta.__le", +"ffi.meta.__concat", +"ffi.meta.__call", +"ffi.meta.__add", +"ffi.meta.__sub", +"ffi.meta.__mul", +"ffi.meta.__div", +"ffi.meta.__mod", +"ffi.meta.__pow", +"ffi.meta.__unm", +"ffi.meta.__tostring", +"ffi.meta.__pairs", +"ffi.meta.__ipairs", +"ffi.clib.__index", +"ffi.clib.__newindex", +"ffi.clib.__gc", +"ffi.callback.free", +"ffi.callback.set", +"ffi.cdef", +"ffi.new", +"ffi.cast", +"ffi.typeof", +"ffi.typeinfo", +"ffi.istype", +"ffi.sizeof", +"ffi.alignof", +"ffi.offsetof", +"ffi.errno", +"ffi.string", +"ffi.copy", +"ffi.fill", +"ffi.abi", +"ffi.metatype", +"ffi.gc", +"ffi.load", +"buffer.method.free", +"buffer.method.reset", +"buffer.method.skip", +"buffer.method.set", +"buffer.method.put", +"buffer.method.putf", +"buffer.method.get", +"buffer.method.putcdata", +"buffer.method.reserve", +"buffer.method.commit", +"buffer.method.ref", +"buffer.method.encode", +"buffer.method.decode", +"buffer.method.__gc", +"buffer.method.__tostring", +"buffer.method.__len", +"buffer.new", +"buffer.encode", +"buffer.decode", +}, + +} + diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/zone.lua b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/zone.lua index 1308cb74..55dc76d3 100644 --- a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/zone.lua +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/jit/zone.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT profiler zones. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/libluajit.a b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/libluajit.a index cf0f1eed..b3549777 100644 Binary files a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/libluajit.a and b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/libluajit.a differ diff --git a/love/src/jni/LuaJIT-2.1/android/arm64-v8a/luajit.h b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/luajit.h new file mode 100644 index 00000000..94814d91 --- /dev/null +++ b/love/src/jni/LuaJIT-2.1/android/arm64-v8a/luajit.h @@ -0,0 +1,79 @@ +/* +** LuaJIT -- a Just-In-Time Compiler for Lua. https://luajit.org/ +** +** Copyright (C) 2005-2023 Mike Pall. All rights reserved. +** +** Permission is hereby granted, free of charge, to any person obtaining +** a copy of this software and associated documentation files (the +** "Software"), to deal in the Software without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Software, and to +** permit persons to whom the Software is furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be +** included in all copies or substantial portions of the Software. +** +** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +** +** [ MIT license: https://www.opensource.org/licenses/mit-license.php ] +*/ + +#ifndef _LUAJIT_H +#define _LUAJIT_H + +#include "lua.h" + +#define LUAJIT_VERSION "LuaJIT 2.1.1700008891" +#define LUAJIT_VERSION_NUM 20199 /* Deprecated. */ +#define LUAJIT_VERSION_SYM luaJIT_version_2_1_1700008891 +#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2023 Mike Pall" +#define LUAJIT_URL "https://luajit.org/" + +/* Modes for luaJIT_setmode. */ +#define LUAJIT_MODE_MASK 0x00ff + +enum { + LUAJIT_MODE_ENGINE, /* Set mode for whole JIT engine. */ + LUAJIT_MODE_DEBUG, /* Set debug mode (idx = level). */ + + LUAJIT_MODE_FUNC, /* Change mode for a function. */ + LUAJIT_MODE_ALLFUNC, /* Recurse into subroutine protos. */ + LUAJIT_MODE_ALLSUBFUNC, /* Change only the subroutines. */ + + LUAJIT_MODE_TRACE, /* Flush a compiled trace. */ + + LUAJIT_MODE_WRAPCFUNC = 0x10, /* Set wrapper mode for C function calls. */ + + LUAJIT_MODE_MAX +}; + +/* Flags or'ed in to the mode. */ +#define LUAJIT_MODE_OFF 0x0000 /* Turn feature off. */ +#define LUAJIT_MODE_ON 0x0100 /* Turn feature on. */ +#define LUAJIT_MODE_FLUSH 0x0200 /* Flush JIT-compiled code. */ + +/* LuaJIT public C API. */ + +/* Control the JIT engine. */ +LUA_API int luaJIT_setmode(lua_State *L, int idx, int mode); + +/* Low-overhead profiling API. */ +typedef void (*luaJIT_profile_callback)(void *data, lua_State *L, + int samples, int vmstate); +LUA_API void luaJIT_profile_start(lua_State *L, const char *mode, + luaJIT_profile_callback cb, void *data); +LUA_API void luaJIT_profile_stop(lua_State *L); +LUA_API const char *luaJIT_profile_dumpstack(lua_State *L, const char *fmt, + int depth, size_t *len); + +/* Enforce (dynamic) linker error for version mismatches. Call from main. */ +LUA_API void LUAJIT_VERSION_SYM(void); + +#endif diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/bc.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/bc.lua index 8d0844c0..f1a63b9c 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/bc.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/bc.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT bytecode listing module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -41,7 +41,6 @@ -- Cache some library functions and objects. local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") local jutil = require("jit.util") local vmdef = require("jit.vmdef") local bit = require("bit") diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/bcsave.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/bcsave.lua index 90fe9daf..390d297c 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/bcsave.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/bcsave.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT module to save/list bytecode. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -11,7 +11,7 @@ ------------------------------------------------------------------------------ local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") +assert(jit.version_num == 20199, "LuaJIT core/library version mismatch") local bit = require("bit") -- Symbol name prefix for LuaJIT bytecode. @@ -38,7 +38,7 @@ Save LuaJIT bytecode: luajit -b[options] input output -- Stop handling options. - Use stdin as input and/or stdout as output. -File types: c h obj o raw (default) +File types: c cc h obj o raw (default) ]] os.exit(1) end @@ -81,7 +81,7 @@ end ------------------------------------------------------------------------------ local map_type = { - raw = "raw", c = "c", h = "h", o = "obj", obj = "obj", + raw = "raw", c = "c", cc = "c", h = "h", o = "obj", obj = "obj", } local map_arch = { diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_arm.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_arm.lua index 18ab68df..a7546a45 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_arm.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_arm.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT ARM disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This is a helper module used by the LuaJIT machine code dumper module. diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_arm64.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_arm64.lua index 531584a1..84677666 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_arm64.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_arm64.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT ARM64 disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h -- -- Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. @@ -107,24 +107,20 @@ local map_logsr = { -- Logical, shifted register. [0] = { shift = 29, mask = 3, [0] = { - shift = 21, mask = 7, - [0] = "andDNMSg", "bicDNMSg", "andDNMSg", "bicDNMSg", - "andDNMSg", "bicDNMSg", "andDNMg", "bicDNMg" + shift = 21, mask = 1, + [0] = "andDNMSg", "bicDNMSg" }, { - shift = 21, mask = 7, - [0] ="orr|movDN0MSg", "orn|mvnDN0MSg", "orr|movDN0MSg", "orn|mvnDN0MSg", - "orr|movDN0MSg", "orn|mvnDN0MSg", "orr|movDN0Mg", "orn|mvnDN0Mg" + shift = 21, mask = 1, + [0] = "orr|movDN0MSg", "orn|mvnDN0MSg" }, { - shift = 21, mask = 7, - [0] = "eorDNMSg", "eonDNMSg", "eorDNMSg", "eonDNMSg", - "eorDNMSg", "eonDNMSg", "eorDNMg", "eonDNMg" + shift = 21, mask = 1, + [0] = "eorDNMSg", "eonDNMSg" }, { - shift = 21, mask = 7, - [0] = "ands|tstD0NMSg", "bicsDNMSg", "ands|tstD0NMSg", "bicsDNMSg", - "ands|tstD0NMSg", "bicsDNMSg", "ands|tstD0NMg", "bicsDNMg" + shift = 21, mask = 1, + [0] = "ands|tstD0NMSg", "bicsDNMSg" } }, false -- unallocated @@ -132,24 +128,20 @@ local map_logsr = { -- Logical, shifted register. { shift = 29, mask = 3, [0] = { - shift = 21, mask = 7, - [0] = "andDNMSg", "bicDNMSg", "andDNMSg", "bicDNMSg", - "andDNMSg", "bicDNMSg", "andDNMg", "bicDNMg" + shift = 21, mask = 1, + [0] = "andDNMSg", "bicDNMSg" }, { - shift = 21, mask = 7, - [0] = "orr|movDN0MSg", "orn|mvnDN0MSg", "orr|movDN0MSg", "orn|mvnDN0MSg", - "orr|movDN0MSg", "orn|mvnDN0MSg", "orr|movDN0Mg", "orn|mvnDN0Mg" + shift = 21, mask = 1, + [0] = "orr|movDN0MSg", "orn|mvnDN0MSg" }, { - shift = 21, mask = 7, - [0] = "eorDNMSg", "eonDNMSg", "eorDNMSg", "eonDNMSg", - "eorDNMSg", "eonDNMSg", "eorDNMg", "eonDNMg" + shift = 21, mask = 1, + [0] = "eorDNMSg", "eonDNMSg" }, { - shift = 21, mask = 7, - [0] = "ands|tstD0NMSg", "bicsDNMSg", "ands|tstD0NMSg", "bicsDNMSg", - "ands|tstD0NMSg", "bicsDNMSg", "ands|tstD0NMg", "bicsDNMg" + shift = 21, mask = 1, + [0] = "ands|tstD0NMSg", "bicsDNMSg" } } } @@ -735,7 +727,7 @@ local map_cond = { "hi", "ls", "ge", "lt", "gt", "le", "al", } -local map_shift = { [0] = "lsl", "lsr", "asr", } +local map_shift = { [0] = "lsl", "lsr", "asr", "ror"} local map_extend = { [0] = "uxtb", "uxth", "uxtw", "uxtx", "sxtb", "sxth", "sxtw", "sxtx", @@ -956,7 +948,7 @@ local function disass_ins(ctx) elseif p == "U" then local rn = map_regs.x[band(rshift(op, 5), 31)] local sz = band(rshift(op, 30), 3) - local imm12 = lshift(arshift(lshift(op, 10), 20), sz) + local imm12 = lshift(rshift(lshift(op, 10), 20), sz) if imm12 ~= 0 then x = "["..rn..", #"..imm12.."]" else @@ -993,8 +985,7 @@ local function disass_ins(ctx) x = x.."]" end elseif p == "P" then - local opcv, sh = rshift(op, 26), 2 - if opcv >= 0x2a then sh = 4 elseif opcv >= 0x1b then sh = 3 end + local sh = 2 + rshift(op, 31 - band(rshift(op, 26), 1)) local imm7 = lshift(arshift(lshift(op, 10), 25), sh) local rn = map_regs.x[band(rshift(op, 5), 31)] local ind = band(rshift(op, 23), 3) diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_arm64be.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_arm64be.lua index 7337f5b7..f7a56352 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_arm64be.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_arm64be.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT ARM64BE disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- ARM64 instructions are always little-endian. So just forward to the diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips.lua index 05dc30fd..b0e99df4 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT/X license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This is a helper module used by the LuaJIT machine code dumper module. diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips64.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips64.lua index 1236e524..5f3a4dab 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips64.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips64.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS64 disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the big-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips64el.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips64el.lua index 7c478d2d..ea513649 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips64el.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips64el.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS64EL disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the little-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips64r6.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips64r6.lua index c5789ce4..1d948411 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips64r6.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips64r6.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS64R6 disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the r6 big-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips64r6el.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips64r6el.lua index f67f6240..26592e17 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips64r6el.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mips64r6el.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS64R6EL disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the r6 little-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mipsel.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mipsel.lua index a4fa6c60..6906a779 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mipsel.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_mipsel.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPSEL disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the little-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_ppc.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_ppc.lua index 8f65f25a..95c3da84 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_ppc.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_ppc.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT PPC disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT/X license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This is a helper module used by the LuaJIT machine code dumper module. diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_x64.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_x64.lua index d076c6ae..eb21f044 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_x64.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_x64.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT x64 disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the 64 bit functions from the combined diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_x86.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_x86.lua index 84492fff..40b8218e 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_x86.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dis_x86.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT x86/x64 disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This is a helper module used by the LuaJIT machine code dumper module. diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dump.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dump.lua index 18e7a4b7..746732f9 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dump.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/dump.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT compiler dump module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -55,7 +55,6 @@ -- Cache some library functions and objects. local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") local jutil = require("jit.util") local vmdef = require("jit.vmdef") local funcinfo, funcbc = jutil.funcinfo, jutil.funcbc diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/p.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/p.lua index f225c312..36f836c5 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/p.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/p.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT profiler. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -41,7 +41,6 @@ -- Cache some library functions and objects. local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") local profile = require("jit.profile") local vmdef = require("jit.vmdef") local math = math diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/v.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/v.lua index ac8b19db..8e91f494 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/v.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/v.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- Verbose mode of the LuaJIT compiler. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -59,7 +59,6 @@ -- Cache some library functions and objects. local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") local jutil = require("jit.util") local vmdef = require("jit.vmdef") local funcinfo, traceinfo = jutil.funcinfo, jutil.traceinfo diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/vmdef.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/vmdef.lua index 9ed150be..ef31b783 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/vmdef.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/vmdef.lua @@ -1,394 +1,396 @@ --- This is a generated file. DO NOT EDIT! - -return { - -bcnames = "ISLT ISGE ISLE ISGT ISEQV ISNEV ISEQS ISNES ISEQN ISNEN ISEQP ISNEP ISTC ISFC IST ISF ISTYPEISNUM MOV NOT UNM LEN ADDVN SUBVN MULVN DIVVN MODVN ADDNV SUBNV MULNV DIVNV MODNV ADDVV SUBVV MULVV DIVVV MODVV POW CAT KSTR KCDATAKSHORTKNUM KPRI KNIL UGET USETV USETS USETN USETP UCLO FNEW TNEW TDUP GGET GSET TGETV TGETS TGETB TGETR TSETV TSETS TSETB TSETM TSETR CALLM CALL CALLMTCALLT ITERC ITERN VARG ISNEXTRETM RET RET0 RET1 FORI JFORI FORL IFORL JFORL ITERL IITERLJITERLLOOP ILOOP JLOOP JMP FUNCF IFUNCFJFUNCFFUNCV IFUNCVJFUNCVFUNCC FUNCCW", - -irnames = "LT GE LE GT ULT UGE ULE UGT EQ NE ABC RETF NOP BASE PVAL GCSTEPHIOP LOOP USE PHI RENAMEPROF KPRI KINT KGC KPTR KKPTR KNULL KNUM KINT64KSLOT BNOT BSWAP BAND BOR BXOR BSHL BSHR BSAR BROL BROR ADD SUB MUL DIV MOD POW NEG ABS LDEXP MIN MAX FPMATHADDOV SUBOV MULOV AREF HREFK HREF NEWREFUREFO UREFC FREF TMPREFSTRREFLREF ALOAD HLOAD ULOAD FLOAD XLOAD SLOAD VLOAD ALEN ASTOREHSTOREUSTOREFSTOREXSTORESNEW XSNEW TNEW TDUP CNEW CNEWI BUFHDRBUFPUTBUFSTRTBAR OBAR XBAR CONV TOBIT TOSTR STRTO CALLN CALLA CALLL CALLS CALLXSCARG ", - -irfpm = { [0]="floor", "ceil", "trunc", "sqrt", "log", "log2", "other", }, - -irfield = { [0]="str.len", "func.env", "func.pc", "func.ffid", "thread.env", "tab.meta", "tab.array", "tab.node", "tab.asize", "tab.hmask", "tab.nomm", "udata.meta", "udata.udtype", "udata.file", "sbuf.w", "sbuf.e", "sbuf.b", "sbuf.l", "sbuf.ref", "sbuf.r", "cdata.ctypeid", "cdata.ptr", "cdata.int", "cdata.int64", "cdata.int64_4", }, - -ircall = { -[0]="lj_str_cmp", -"lj_str_find", -"lj_str_new", -"lj_strscan_num", -"lj_strfmt_int", -"lj_strfmt_num", -"lj_strfmt_char", -"lj_strfmt_putint", -"lj_strfmt_putnum", -"lj_strfmt_putquoted", -"lj_strfmt_putfxint", -"lj_strfmt_putfnum_int", -"lj_strfmt_putfnum_uint", -"lj_strfmt_putfnum", -"lj_strfmt_putfstr", -"lj_strfmt_putfchar", -"lj_buf_putmem", -"lj_buf_putstr", -"lj_buf_putchar", -"lj_buf_putstr_reverse", -"lj_buf_putstr_lower", -"lj_buf_putstr_upper", -"lj_buf_putstr_rep", -"lj_buf_puttab", -"lj_bufx_set", -"lj_bufx_more", -"lj_serialize_put", -"lj_serialize_get", -"lj_serialize_encode", -"lj_serialize_decode", -"lj_buf_tostr", -"lj_tab_new_ah", -"lj_tab_new1", -"lj_tab_dup", -"lj_tab_clear", -"lj_tab_newkey", -"lj_tab_keyindex", -"lj_vm_next", -"lj_tab_len", -"lj_tab_len_hint", -"lj_gc_step_jit", -"lj_gc_barrieruv", -"lj_mem_newgco", -"lj_prng_u64d", -"lj_vm_modi", -"log10", -"exp", -"sin", -"cos", -"tan", -"asin", -"acos", -"atan", -"sinh", -"cosh", -"tanh", -"fputc", -"fwrite", -"fflush", -"lj_vm_floor", -"lj_vm_ceil", -"lj_vm_trunc", -"sqrt", -"log", -"lj_vm_log2", -"pow", -"atan2", -"ldexp", -"lj_vm_tobit", -"softfp_add", -"softfp_sub", -"softfp_mul", -"softfp_div", -"softfp_cmp", -"softfp_i2d", -"softfp_d2i", -"lj_vm_sfmin", -"lj_vm_sfmax", -"lj_vm_tointg", -"softfp_ui2d", -"softfp_f2d", -"softfp_d2ui", -"softfp_d2f", -"softfp_i2f", -"softfp_ui2f", -"softfp_f2i", -"softfp_f2ui", -"fp64_l2d", -"fp64_ul2d", -"fp64_l2f", -"fp64_ul2f", -"fp64_d2l", -"fp64_d2ul", -"fp64_f2l", -"fp64_f2ul", -"lj_carith_divi64", -"lj_carith_divu64", -"lj_carith_modi64", -"lj_carith_modu64", -"lj_carith_powi64", -"lj_carith_powu64", -"lj_cdata_newv", -"lj_cdata_setfin", -"strlen", -"memcpy", -"memset", -"lj_vm_errno", -"lj_carith_mul64", -"lj_carith_shl64", -"lj_carith_shr64", -"lj_carith_sar64", -"lj_carith_rol64", -"lj_carith_ror64", -}, - -traceerr = { -[0]="error thrown or hook called during recording", -"trace too short", -"trace too long", -"trace too deep", -"too many snapshots", -"blacklisted", -"retry recording", -"NYI: bytecode %d", -"leaving loop in root trace", -"inner loop in root trace", -"loop unroll limit reached", -"bad argument type", -"JIT compilation disabled for function", -"call unroll limit reached", -"down-recursion, restarting", -"NYI: unsupported variant of FastFunc %s", -"NYI: return to lower frame", -"store with nil or NaN key", -"missing metamethod", -"looping index lookup", -"NYI: mixed sparse/dense table", -"symbol not in cache", -"NYI: unsupported C type conversion", -"NYI: unsupported C function type", -"guard would always fail", -"too many PHIs", -"persistent type instability", -"failed to allocate mcode memory", -"machine code too long", -"hit mcode limit (retrying)", -"too many spill slots", -"inconsistent register allocation", -"NYI: cannot assemble IR instruction %d", -"NYI: PHI shuffling too complex", -"NYI: register coalescing too complex", -}, - -ffnames = { -[0]="Lua", -"C", -"assert", -"type", -"next", -"pairs", -"ipairs_aux", -"ipairs", -"getmetatable", -"setmetatable", -"getfenv", -"setfenv", -"rawget", -"rawset", -"rawequal", -"unpack", -"select", -"tonumber", -"tostring", -"error", -"pcall", -"xpcall", -"loadfile", -"load", -"loadstring", -"dofile", -"gcinfo", -"collectgarbage", -"newproxy", -"print", -"coroutine.status", -"coroutine.running", -"coroutine.isyieldable", -"coroutine.create", -"coroutine.yield", -"coroutine.resume", -"coroutine.wrap_aux", -"coroutine.wrap", -"math.abs", -"math.floor", -"math.ceil", -"math.sqrt", -"math.log10", -"math.exp", -"math.sin", -"math.cos", -"math.tan", -"math.asin", -"math.acos", -"math.atan", -"math.sinh", -"math.cosh", -"math.tanh", -"math.frexp", -"math.modf", -"math.log", -"math.atan2", -"math.pow", -"math.fmod", -"math.ldexp", -"math.min", -"math.max", -"math.random", -"math.randomseed", -"bit.tobit", -"bit.bnot", -"bit.bswap", -"bit.lshift", -"bit.rshift", -"bit.arshift", -"bit.rol", -"bit.ror", -"bit.band", -"bit.bor", -"bit.bxor", -"bit.tohex", -"string.byte", -"string.char", -"string.sub", -"string.rep", -"string.reverse", -"string.lower", -"string.upper", -"string.dump", -"string.find", -"string.match", -"string.gmatch_aux", -"string.gmatch", -"string.gsub", -"string.format", -"table.maxn", -"table.insert", -"table.concat", -"table.sort", -"table.new", -"table.clear", -"io.method.close", -"io.method.read", -"io.method.write", -"io.method.flush", -"io.method.seek", -"io.method.setvbuf", -"io.method.lines", -"io.method.__gc", -"io.method.__tostring", -"io.open", -"io.popen", -"io.tmpfile", -"io.close", -"io.read", -"io.write", -"io.flush", -"io.input", -"io.output", -"io.lines", -"io.type", -"os.execute", -"os.remove", -"os.rename", -"os.tmpname", -"os.getenv", -"os.exit", -"os.clock", -"os.date", -"os.time", -"os.difftime", -"os.setlocale", -"debug.getregistry", -"debug.getmetatable", -"debug.setmetatable", -"debug.getfenv", -"debug.setfenv", -"debug.getinfo", -"debug.getlocal", -"debug.setlocal", -"debug.getupvalue", -"debug.setupvalue", -"debug.upvalueid", -"debug.upvaluejoin", -"debug.sethook", -"debug.gethook", -"debug.debug", -"debug.traceback", -"jit.on", -"jit.off", -"jit.flush", -"jit.status", -"jit.security", -"jit.attach", -"jit.util.funcinfo", -"jit.util.funcbc", -"jit.util.funck", -"jit.util.funcuvname", -"jit.util.traceinfo", -"jit.util.traceir", -"jit.util.tracek", -"jit.util.tracesnap", -"jit.util.tracemc", -"jit.util.traceexitstub", -"jit.util.ircalladdr", -"jit.opt.start", -"jit.profile.start", -"jit.profile.stop", -"jit.profile.dumpstack", -"ffi.meta.__index", -"ffi.meta.__newindex", -"ffi.meta.__eq", -"ffi.meta.__len", -"ffi.meta.__lt", -"ffi.meta.__le", -"ffi.meta.__concat", -"ffi.meta.__call", -"ffi.meta.__add", -"ffi.meta.__sub", -"ffi.meta.__mul", -"ffi.meta.__div", -"ffi.meta.__mod", -"ffi.meta.__pow", -"ffi.meta.__unm", -"ffi.meta.__tostring", -"ffi.meta.__pairs", -"ffi.meta.__ipairs", -"ffi.clib.__index", -"ffi.clib.__newindex", -"ffi.clib.__gc", -"ffi.callback.free", -"ffi.callback.set", -"ffi.cdef", -"ffi.new", -"ffi.cast", -"ffi.typeof", -"ffi.typeinfo", -"ffi.istype", -"ffi.sizeof", -"ffi.alignof", -"ffi.offsetof", -"ffi.errno", -"ffi.string", -"ffi.copy", -"ffi.fill", -"ffi.abi", -"ffi.metatype", -"ffi.gc", -"ffi.load", -"buffer.method.free", -"buffer.method.reset", -"buffer.method.skip", -"buffer.method.set", -"buffer.method.put", -"buffer.method.putf", -"buffer.method.get", -"buffer.method.putcdata", -"buffer.method.reserve", -"buffer.method.commit", -"buffer.method.ref", -"buffer.method.encode", -"buffer.method.decode", -"buffer.method.__gc", -"buffer.method.__tostring", -"buffer.method.__len", -"buffer.new", -"buffer.encode", -"buffer.decode", -}, - -} - +-- This is a generated file. DO NOT EDIT! + +assert(require("jit").version == "LuaJIT 2.1.1700008891", "LuaJIT core/library version mismatch") + +return { + +bcnames = "ISLT ISGE ISLE ISGT ISEQV ISNEV ISEQS ISNES ISEQN ISNEN ISEQP ISNEP ISTC ISFC IST ISF ISTYPEISNUM MOV NOT UNM LEN ADDVN SUBVN MULVN DIVVN MODVN ADDNV SUBNV MULNV DIVNV MODNV ADDVV SUBVV MULVV DIVVV MODVV POW CAT KSTR KCDATAKSHORTKNUM KPRI KNIL UGET USETV USETS USETN USETP UCLO FNEW TNEW TDUP GGET GSET TGETV TGETS TGETB TGETR TSETV TSETS TSETB TSETM TSETR CALLM CALL CALLMTCALLT ITERC ITERN VARG ISNEXTRETM RET RET0 RET1 FORI JFORI FORL IFORL JFORL ITERL IITERLJITERLLOOP ILOOP JLOOP JMP FUNCF IFUNCFJFUNCFFUNCV IFUNCVJFUNCVFUNCC FUNCCW", + +irnames = "LT GE LE GT ULT UGE ULE UGT EQ NE ABC RETF NOP BASE PVAL GCSTEPHIOP LOOP USE PHI RENAMEPROF KPRI KINT KGC KPTR KKPTR KNULL KNUM KINT64KSLOT BNOT BSWAP BAND BOR BXOR BSHL BSHR BSAR BROL BROR ADD SUB MUL DIV MOD POW NEG ABS LDEXP MIN MAX FPMATHADDOV SUBOV MULOV AREF HREFK HREF NEWREFUREFO UREFC FREF TMPREFSTRREFLREF ALOAD HLOAD ULOAD FLOAD XLOAD SLOAD VLOAD ALEN ASTOREHSTOREUSTOREFSTOREXSTORESNEW XSNEW TNEW TDUP CNEW CNEWI BUFHDRBUFPUTBUFSTRTBAR OBAR XBAR CONV TOBIT TOSTR STRTO CALLN CALLA CALLL CALLS CALLXSCARG ", + +irfpm = { [0]="floor", "ceil", "trunc", "sqrt", "log", "log2", "other", }, + +irfield = { [0]="str.len", "func.env", "func.pc", "func.ffid", "thread.env", "tab.meta", "tab.array", "tab.node", "tab.asize", "tab.hmask", "tab.nomm", "udata.meta", "udata.udtype", "udata.file", "sbuf.w", "sbuf.e", "sbuf.b", "sbuf.l", "sbuf.ref", "sbuf.r", "cdata.ctypeid", "cdata.ptr", "cdata.int", "cdata.int64", "cdata.int64_4", }, + +ircall = { +[0]="lj_str_cmp", +"lj_str_find", +"lj_str_new", +"lj_strscan_num", +"lj_strfmt_int", +"lj_strfmt_num", +"lj_strfmt_char", +"lj_strfmt_putint", +"lj_strfmt_putnum", +"lj_strfmt_putquoted", +"lj_strfmt_putfxint", +"lj_strfmt_putfnum_int", +"lj_strfmt_putfnum_uint", +"lj_strfmt_putfnum", +"lj_strfmt_putfstr", +"lj_strfmt_putfchar", +"lj_buf_putmem", +"lj_buf_putstr", +"lj_buf_putchar", +"lj_buf_putstr_reverse", +"lj_buf_putstr_lower", +"lj_buf_putstr_upper", +"lj_buf_putstr_rep", +"lj_buf_puttab", +"lj_bufx_set", +"lj_bufx_more", +"lj_serialize_put", +"lj_serialize_get", +"lj_serialize_encode", +"lj_serialize_decode", +"lj_buf_tostr", +"lj_tab_new_ah", +"lj_tab_new1", +"lj_tab_dup", +"lj_tab_clear", +"lj_tab_newkey", +"lj_tab_keyindex", +"lj_vm_next", +"lj_tab_len", +"lj_tab_len_hint", +"lj_gc_step_jit", +"lj_gc_barrieruv", +"lj_mem_newgco", +"lj_prng_u64d", +"lj_vm_modi", +"log10", +"exp", +"sin", +"cos", +"tan", +"asin", +"acos", +"atan", +"sinh", +"cosh", +"tanh", +"fputc", +"fwrite", +"fflush", +"lj_vm_floor", +"lj_vm_ceil", +"lj_vm_trunc", +"sqrt", +"log", +"lj_vm_log2", +"pow", +"atan2", +"ldexp", +"lj_vm_tobit", +"softfp_add", +"softfp_sub", +"softfp_mul", +"softfp_div", +"softfp_cmp", +"softfp_i2d", +"softfp_d2i", +"lj_vm_sfmin", +"lj_vm_sfmax", +"lj_vm_tointg", +"softfp_ui2d", +"softfp_f2d", +"softfp_d2ui", +"softfp_d2f", +"softfp_i2f", +"softfp_ui2f", +"softfp_f2i", +"softfp_f2ui", +"fp64_l2d", +"fp64_ul2d", +"fp64_l2f", +"fp64_ul2f", +"fp64_d2l", +"fp64_d2ul", +"fp64_f2l", +"fp64_f2ul", +"lj_carith_divi64", +"lj_carith_divu64", +"lj_carith_modi64", +"lj_carith_modu64", +"lj_carith_powi64", +"lj_carith_powu64", +"lj_cdata_newv", +"lj_cdata_setfin", +"strlen", +"memcpy", +"memset", +"lj_vm_errno", +"lj_carith_mul64", +"lj_carith_shl64", +"lj_carith_shr64", +"lj_carith_sar64", +"lj_carith_rol64", +"lj_carith_ror64", +}, + +traceerr = { +[0]="error thrown or hook called during recording", +"trace too short", +"trace too long", +"trace too deep", +"too many snapshots", +"blacklisted", +"retry recording", +"NYI: bytecode %d", +"leaving loop in root trace", +"inner loop in root trace", +"loop unroll limit reached", +"bad argument type", +"JIT compilation disabled for function", +"call unroll limit reached", +"down-recursion, restarting", +"NYI: unsupported variant of FastFunc %s", +"NYI: return to lower frame", +"store with nil or NaN key", +"missing metamethod", +"looping index lookup", +"NYI: mixed sparse/dense table", +"symbol not in cache", +"NYI: unsupported C type conversion", +"NYI: unsupported C function type", +"guard would always fail", +"too many PHIs", +"persistent type instability", +"failed to allocate mcode memory", +"machine code too long", +"hit mcode limit (retrying)", +"too many spill slots", +"inconsistent register allocation", +"NYI: cannot assemble IR instruction %d", +"NYI: PHI shuffling too complex", +"NYI: register coalescing too complex", +}, + +ffnames = { +[0]="Lua", +"C", +"assert", +"type", +"next", +"pairs", +"ipairs_aux", +"ipairs", +"getmetatable", +"setmetatable", +"getfenv", +"setfenv", +"rawget", +"rawset", +"rawequal", +"unpack", +"select", +"tonumber", +"tostring", +"error", +"pcall", +"xpcall", +"loadfile", +"load", +"loadstring", +"dofile", +"gcinfo", +"collectgarbage", +"newproxy", +"print", +"coroutine.status", +"coroutine.running", +"coroutine.isyieldable", +"coroutine.create", +"coroutine.yield", +"coroutine.resume", +"coroutine.wrap_aux", +"coroutine.wrap", +"math.abs", +"math.floor", +"math.ceil", +"math.sqrt", +"math.log10", +"math.exp", +"math.sin", +"math.cos", +"math.tan", +"math.asin", +"math.acos", +"math.atan", +"math.sinh", +"math.cosh", +"math.tanh", +"math.frexp", +"math.modf", +"math.log", +"math.atan2", +"math.pow", +"math.fmod", +"math.ldexp", +"math.min", +"math.max", +"math.random", +"math.randomseed", +"bit.tobit", +"bit.bnot", +"bit.bswap", +"bit.lshift", +"bit.rshift", +"bit.arshift", +"bit.rol", +"bit.ror", +"bit.band", +"bit.bor", +"bit.bxor", +"bit.tohex", +"string.byte", +"string.char", +"string.sub", +"string.rep", +"string.reverse", +"string.lower", +"string.upper", +"string.dump", +"string.find", +"string.match", +"string.gmatch_aux", +"string.gmatch", +"string.gsub", +"string.format", +"table.maxn", +"table.insert", +"table.concat", +"table.sort", +"table.new", +"table.clear", +"io.method.close", +"io.method.read", +"io.method.write", +"io.method.flush", +"io.method.seek", +"io.method.setvbuf", +"io.method.lines", +"io.method.__gc", +"io.method.__tostring", +"io.open", +"io.popen", +"io.tmpfile", +"io.close", +"io.read", +"io.write", +"io.flush", +"io.input", +"io.output", +"io.lines", +"io.type", +"os.execute", +"os.remove", +"os.rename", +"os.tmpname", +"os.getenv", +"os.exit", +"os.clock", +"os.date", +"os.time", +"os.difftime", +"os.setlocale", +"debug.getregistry", +"debug.getmetatable", +"debug.setmetatable", +"debug.getfenv", +"debug.setfenv", +"debug.getinfo", +"debug.getlocal", +"debug.setlocal", +"debug.getupvalue", +"debug.setupvalue", +"debug.upvalueid", +"debug.upvaluejoin", +"debug.sethook", +"debug.gethook", +"debug.debug", +"debug.traceback", +"jit.on", +"jit.off", +"jit.flush", +"jit.status", +"jit.security", +"jit.attach", +"jit.util.funcinfo", +"jit.util.funcbc", +"jit.util.funck", +"jit.util.funcuvname", +"jit.util.traceinfo", +"jit.util.traceir", +"jit.util.tracek", +"jit.util.tracesnap", +"jit.util.tracemc", +"jit.util.traceexitstub", +"jit.util.ircalladdr", +"jit.opt.start", +"jit.profile.start", +"jit.profile.stop", +"jit.profile.dumpstack", +"ffi.meta.__index", +"ffi.meta.__newindex", +"ffi.meta.__eq", +"ffi.meta.__len", +"ffi.meta.__lt", +"ffi.meta.__le", +"ffi.meta.__concat", +"ffi.meta.__call", +"ffi.meta.__add", +"ffi.meta.__sub", +"ffi.meta.__mul", +"ffi.meta.__div", +"ffi.meta.__mod", +"ffi.meta.__pow", +"ffi.meta.__unm", +"ffi.meta.__tostring", +"ffi.meta.__pairs", +"ffi.meta.__ipairs", +"ffi.clib.__index", +"ffi.clib.__newindex", +"ffi.clib.__gc", +"ffi.callback.free", +"ffi.callback.set", +"ffi.cdef", +"ffi.new", +"ffi.cast", +"ffi.typeof", +"ffi.typeinfo", +"ffi.istype", +"ffi.sizeof", +"ffi.alignof", +"ffi.offsetof", +"ffi.errno", +"ffi.string", +"ffi.copy", +"ffi.fill", +"ffi.abi", +"ffi.metatype", +"ffi.gc", +"ffi.load", +"buffer.method.free", +"buffer.method.reset", +"buffer.method.skip", +"buffer.method.set", +"buffer.method.put", +"buffer.method.putf", +"buffer.method.get", +"buffer.method.putcdata", +"buffer.method.reserve", +"buffer.method.commit", +"buffer.method.ref", +"buffer.method.encode", +"buffer.method.decode", +"buffer.method.__gc", +"buffer.method.__tostring", +"buffer.method.__len", +"buffer.new", +"buffer.encode", +"buffer.decode", +}, + +} + diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/zone.lua b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/zone.lua index 1308cb74..55dc76d3 100644 --- a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/zone.lua +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/jit/zone.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT profiler zones. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/libluajit.a b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/libluajit.a index 78a923c4..ec197bc8 100644 Binary files a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/libluajit.a and b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/libluajit.a differ diff --git a/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/luajit.h b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/luajit.h new file mode 100644 index 00000000..94814d91 --- /dev/null +++ b/love/src/jni/LuaJIT-2.1/android/armeabi-v7a/luajit.h @@ -0,0 +1,79 @@ +/* +** LuaJIT -- a Just-In-Time Compiler for Lua. https://luajit.org/ +** +** Copyright (C) 2005-2023 Mike Pall. All rights reserved. +** +** Permission is hereby granted, free of charge, to any person obtaining +** a copy of this software and associated documentation files (the +** "Software"), to deal in the Software without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Software, and to +** permit persons to whom the Software is furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be +** included in all copies or substantial portions of the Software. +** +** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +** +** [ MIT license: https://www.opensource.org/licenses/mit-license.php ] +*/ + +#ifndef _LUAJIT_H +#define _LUAJIT_H + +#include "lua.h" + +#define LUAJIT_VERSION "LuaJIT 2.1.1700008891" +#define LUAJIT_VERSION_NUM 20199 /* Deprecated. */ +#define LUAJIT_VERSION_SYM luaJIT_version_2_1_1700008891 +#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2023 Mike Pall" +#define LUAJIT_URL "https://luajit.org/" + +/* Modes for luaJIT_setmode. */ +#define LUAJIT_MODE_MASK 0x00ff + +enum { + LUAJIT_MODE_ENGINE, /* Set mode for whole JIT engine. */ + LUAJIT_MODE_DEBUG, /* Set debug mode (idx = level). */ + + LUAJIT_MODE_FUNC, /* Change mode for a function. */ + LUAJIT_MODE_ALLFUNC, /* Recurse into subroutine protos. */ + LUAJIT_MODE_ALLSUBFUNC, /* Change only the subroutines. */ + + LUAJIT_MODE_TRACE, /* Flush a compiled trace. */ + + LUAJIT_MODE_WRAPCFUNC = 0x10, /* Set wrapper mode for C function calls. */ + + LUAJIT_MODE_MAX +}; + +/* Flags or'ed in to the mode. */ +#define LUAJIT_MODE_OFF 0x0000 /* Turn feature off. */ +#define LUAJIT_MODE_ON 0x0100 /* Turn feature on. */ +#define LUAJIT_MODE_FLUSH 0x0200 /* Flush JIT-compiled code. */ + +/* LuaJIT public C API. */ + +/* Control the JIT engine. */ +LUA_API int luaJIT_setmode(lua_State *L, int idx, int mode); + +/* Low-overhead profiling API. */ +typedef void (*luaJIT_profile_callback)(void *data, lua_State *L, + int samples, int vmstate); +LUA_API void luaJIT_profile_start(lua_State *L, const char *mode, + luaJIT_profile_callback cb, void *data); +LUA_API void luaJIT_profile_stop(lua_State *L); +LUA_API const char *luaJIT_profile_dumpstack(lua_State *L, const char *fmt, + int depth, size_t *len); + +/* Enforce (dynamic) linker error for version mismatches. Call from main. */ +LUA_API void LUAJIT_VERSION_SYM(void); + +#endif diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/bc.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/bc.lua index 8d0844c0..f1a63b9c 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/bc.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/bc.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT bytecode listing module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -41,7 +41,6 @@ -- Cache some library functions and objects. local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") local jutil = require("jit.util") local vmdef = require("jit.vmdef") local bit = require("bit") diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/bcsave.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/bcsave.lua index 90fe9daf..390d297c 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/bcsave.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/bcsave.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT module to save/list bytecode. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -11,7 +11,7 @@ ------------------------------------------------------------------------------ local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") +assert(jit.version_num == 20199, "LuaJIT core/library version mismatch") local bit = require("bit") -- Symbol name prefix for LuaJIT bytecode. @@ -38,7 +38,7 @@ Save LuaJIT bytecode: luajit -b[options] input output -- Stop handling options. - Use stdin as input and/or stdout as output. -File types: c h obj o raw (default) +File types: c cc h obj o raw (default) ]] os.exit(1) end @@ -81,7 +81,7 @@ end ------------------------------------------------------------------------------ local map_type = { - raw = "raw", c = "c", h = "h", o = "obj", obj = "obj", + raw = "raw", c = "c", cc = "c", h = "h", o = "obj", obj = "obj", } local map_arch = { diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_arm.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_arm.lua index 18ab68df..a7546a45 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_arm.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_arm.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT ARM disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This is a helper module used by the LuaJIT machine code dumper module. diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_arm64.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_arm64.lua index 531584a1..84677666 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_arm64.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_arm64.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT ARM64 disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h -- -- Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. @@ -107,24 +107,20 @@ local map_logsr = { -- Logical, shifted register. [0] = { shift = 29, mask = 3, [0] = { - shift = 21, mask = 7, - [0] = "andDNMSg", "bicDNMSg", "andDNMSg", "bicDNMSg", - "andDNMSg", "bicDNMSg", "andDNMg", "bicDNMg" + shift = 21, mask = 1, + [0] = "andDNMSg", "bicDNMSg" }, { - shift = 21, mask = 7, - [0] ="orr|movDN0MSg", "orn|mvnDN0MSg", "orr|movDN0MSg", "orn|mvnDN0MSg", - "orr|movDN0MSg", "orn|mvnDN0MSg", "orr|movDN0Mg", "orn|mvnDN0Mg" + shift = 21, mask = 1, + [0] = "orr|movDN0MSg", "orn|mvnDN0MSg" }, { - shift = 21, mask = 7, - [0] = "eorDNMSg", "eonDNMSg", "eorDNMSg", "eonDNMSg", - "eorDNMSg", "eonDNMSg", "eorDNMg", "eonDNMg" + shift = 21, mask = 1, + [0] = "eorDNMSg", "eonDNMSg" }, { - shift = 21, mask = 7, - [0] = "ands|tstD0NMSg", "bicsDNMSg", "ands|tstD0NMSg", "bicsDNMSg", - "ands|tstD0NMSg", "bicsDNMSg", "ands|tstD0NMg", "bicsDNMg" + shift = 21, mask = 1, + [0] = "ands|tstD0NMSg", "bicsDNMSg" } }, false -- unallocated @@ -132,24 +128,20 @@ local map_logsr = { -- Logical, shifted register. { shift = 29, mask = 3, [0] = { - shift = 21, mask = 7, - [0] = "andDNMSg", "bicDNMSg", "andDNMSg", "bicDNMSg", - "andDNMSg", "bicDNMSg", "andDNMg", "bicDNMg" + shift = 21, mask = 1, + [0] = "andDNMSg", "bicDNMSg" }, { - shift = 21, mask = 7, - [0] = "orr|movDN0MSg", "orn|mvnDN0MSg", "orr|movDN0MSg", "orn|mvnDN0MSg", - "orr|movDN0MSg", "orn|mvnDN0MSg", "orr|movDN0Mg", "orn|mvnDN0Mg" + shift = 21, mask = 1, + [0] = "orr|movDN0MSg", "orn|mvnDN0MSg" }, { - shift = 21, mask = 7, - [0] = "eorDNMSg", "eonDNMSg", "eorDNMSg", "eonDNMSg", - "eorDNMSg", "eonDNMSg", "eorDNMg", "eonDNMg" + shift = 21, mask = 1, + [0] = "eorDNMSg", "eonDNMSg" }, { - shift = 21, mask = 7, - [0] = "ands|tstD0NMSg", "bicsDNMSg", "ands|tstD0NMSg", "bicsDNMSg", - "ands|tstD0NMSg", "bicsDNMSg", "ands|tstD0NMg", "bicsDNMg" + shift = 21, mask = 1, + [0] = "ands|tstD0NMSg", "bicsDNMSg" } } } @@ -735,7 +727,7 @@ local map_cond = { "hi", "ls", "ge", "lt", "gt", "le", "al", } -local map_shift = { [0] = "lsl", "lsr", "asr", } +local map_shift = { [0] = "lsl", "lsr", "asr", "ror"} local map_extend = { [0] = "uxtb", "uxth", "uxtw", "uxtx", "sxtb", "sxth", "sxtw", "sxtx", @@ -956,7 +948,7 @@ local function disass_ins(ctx) elseif p == "U" then local rn = map_regs.x[band(rshift(op, 5), 31)] local sz = band(rshift(op, 30), 3) - local imm12 = lshift(arshift(lshift(op, 10), 20), sz) + local imm12 = lshift(rshift(lshift(op, 10), 20), sz) if imm12 ~= 0 then x = "["..rn..", #"..imm12.."]" else @@ -993,8 +985,7 @@ local function disass_ins(ctx) x = x.."]" end elseif p == "P" then - local opcv, sh = rshift(op, 26), 2 - if opcv >= 0x2a then sh = 4 elseif opcv >= 0x1b then sh = 3 end + local sh = 2 + rshift(op, 31 - band(rshift(op, 26), 1)) local imm7 = lshift(arshift(lshift(op, 10), 25), sh) local rn = map_regs.x[band(rshift(op, 5), 31)] local ind = band(rshift(op, 23), 3) diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_arm64be.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_arm64be.lua index 7337f5b7..f7a56352 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_arm64be.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_arm64be.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT ARM64BE disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- ARM64 instructions are always little-endian. So just forward to the diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips.lua index 05dc30fd..b0e99df4 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT/X license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This is a helper module used by the LuaJIT machine code dumper module. diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips64.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips64.lua index 1236e524..5f3a4dab 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips64.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips64.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS64 disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the big-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips64el.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips64el.lua index 7c478d2d..ea513649 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips64el.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips64el.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS64EL disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the little-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips64r6.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips64r6.lua index c5789ce4..1d948411 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips64r6.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips64r6.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS64R6 disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the r6 big-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips64r6el.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips64r6el.lua index f67f6240..26592e17 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips64r6el.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mips64r6el.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS64R6EL disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the r6 little-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mipsel.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mipsel.lua index a4fa6c60..6906a779 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mipsel.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_mipsel.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPSEL disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the little-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_ppc.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_ppc.lua index 8f65f25a..95c3da84 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_ppc.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_ppc.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT PPC disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT/X license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This is a helper module used by the LuaJIT machine code dumper module. diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_x64.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_x64.lua index d076c6ae..eb21f044 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_x64.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_x64.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT x64 disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the 64 bit functions from the combined diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_x86.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_x86.lua index 84492fff..40b8218e 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_x86.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/dis_x86.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT x86/x64 disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This is a helper module used by the LuaJIT machine code dumper module. diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/dump.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/dump.lua index 18e7a4b7..746732f9 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/dump.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/dump.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT compiler dump module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -55,7 +55,6 @@ -- Cache some library functions and objects. local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") local jutil = require("jit.util") local vmdef = require("jit.vmdef") local funcinfo, funcbc = jutil.funcinfo, jutil.funcbc diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/p.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/p.lua index f225c312..36f836c5 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/p.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/p.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT profiler. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -41,7 +41,6 @@ -- Cache some library functions and objects. local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") local profile = require("jit.profile") local vmdef = require("jit.vmdef") local math = math diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/v.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/v.lua index ac8b19db..8e91f494 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/v.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/v.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- Verbose mode of the LuaJIT compiler. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -59,7 +59,6 @@ -- Cache some library functions and objects. local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") local jutil = require("jit.util") local vmdef = require("jit.vmdef") local funcinfo, traceinfo = jutil.funcinfo, jutil.traceinfo diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/vmdef.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/vmdef.lua index 9ed150be..ef31b783 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/vmdef.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/vmdef.lua @@ -1,394 +1,396 @@ --- This is a generated file. DO NOT EDIT! - -return { - -bcnames = "ISLT ISGE ISLE ISGT ISEQV ISNEV ISEQS ISNES ISEQN ISNEN ISEQP ISNEP ISTC ISFC IST ISF ISTYPEISNUM MOV NOT UNM LEN ADDVN SUBVN MULVN DIVVN MODVN ADDNV SUBNV MULNV DIVNV MODNV ADDVV SUBVV MULVV DIVVV MODVV POW CAT KSTR KCDATAKSHORTKNUM KPRI KNIL UGET USETV USETS USETN USETP UCLO FNEW TNEW TDUP GGET GSET TGETV TGETS TGETB TGETR TSETV TSETS TSETB TSETM TSETR CALLM CALL CALLMTCALLT ITERC ITERN VARG ISNEXTRETM RET RET0 RET1 FORI JFORI FORL IFORL JFORL ITERL IITERLJITERLLOOP ILOOP JLOOP JMP FUNCF IFUNCFJFUNCFFUNCV IFUNCVJFUNCVFUNCC FUNCCW", - -irnames = "LT GE LE GT ULT UGE ULE UGT EQ NE ABC RETF NOP BASE PVAL GCSTEPHIOP LOOP USE PHI RENAMEPROF KPRI KINT KGC KPTR KKPTR KNULL KNUM KINT64KSLOT BNOT BSWAP BAND BOR BXOR BSHL BSHR BSAR BROL BROR ADD SUB MUL DIV MOD POW NEG ABS LDEXP MIN MAX FPMATHADDOV SUBOV MULOV AREF HREFK HREF NEWREFUREFO UREFC FREF TMPREFSTRREFLREF ALOAD HLOAD ULOAD FLOAD XLOAD SLOAD VLOAD ALEN ASTOREHSTOREUSTOREFSTOREXSTORESNEW XSNEW TNEW TDUP CNEW CNEWI BUFHDRBUFPUTBUFSTRTBAR OBAR XBAR CONV TOBIT TOSTR STRTO CALLN CALLA CALLL CALLS CALLXSCARG ", - -irfpm = { [0]="floor", "ceil", "trunc", "sqrt", "log", "log2", "other", }, - -irfield = { [0]="str.len", "func.env", "func.pc", "func.ffid", "thread.env", "tab.meta", "tab.array", "tab.node", "tab.asize", "tab.hmask", "tab.nomm", "udata.meta", "udata.udtype", "udata.file", "sbuf.w", "sbuf.e", "sbuf.b", "sbuf.l", "sbuf.ref", "sbuf.r", "cdata.ctypeid", "cdata.ptr", "cdata.int", "cdata.int64", "cdata.int64_4", }, - -ircall = { -[0]="lj_str_cmp", -"lj_str_find", -"lj_str_new", -"lj_strscan_num", -"lj_strfmt_int", -"lj_strfmt_num", -"lj_strfmt_char", -"lj_strfmt_putint", -"lj_strfmt_putnum", -"lj_strfmt_putquoted", -"lj_strfmt_putfxint", -"lj_strfmt_putfnum_int", -"lj_strfmt_putfnum_uint", -"lj_strfmt_putfnum", -"lj_strfmt_putfstr", -"lj_strfmt_putfchar", -"lj_buf_putmem", -"lj_buf_putstr", -"lj_buf_putchar", -"lj_buf_putstr_reverse", -"lj_buf_putstr_lower", -"lj_buf_putstr_upper", -"lj_buf_putstr_rep", -"lj_buf_puttab", -"lj_bufx_set", -"lj_bufx_more", -"lj_serialize_put", -"lj_serialize_get", -"lj_serialize_encode", -"lj_serialize_decode", -"lj_buf_tostr", -"lj_tab_new_ah", -"lj_tab_new1", -"lj_tab_dup", -"lj_tab_clear", -"lj_tab_newkey", -"lj_tab_keyindex", -"lj_vm_next", -"lj_tab_len", -"lj_tab_len_hint", -"lj_gc_step_jit", -"lj_gc_barrieruv", -"lj_mem_newgco", -"lj_prng_u64d", -"lj_vm_modi", -"log10", -"exp", -"sin", -"cos", -"tan", -"asin", -"acos", -"atan", -"sinh", -"cosh", -"tanh", -"fputc", -"fwrite", -"fflush", -"lj_vm_floor", -"lj_vm_ceil", -"lj_vm_trunc", -"sqrt", -"log", -"lj_vm_log2", -"pow", -"atan2", -"ldexp", -"lj_vm_tobit", -"softfp_add", -"softfp_sub", -"softfp_mul", -"softfp_div", -"softfp_cmp", -"softfp_i2d", -"softfp_d2i", -"lj_vm_sfmin", -"lj_vm_sfmax", -"lj_vm_tointg", -"softfp_ui2d", -"softfp_f2d", -"softfp_d2ui", -"softfp_d2f", -"softfp_i2f", -"softfp_ui2f", -"softfp_f2i", -"softfp_f2ui", -"fp64_l2d", -"fp64_ul2d", -"fp64_l2f", -"fp64_ul2f", -"fp64_d2l", -"fp64_d2ul", -"fp64_f2l", -"fp64_f2ul", -"lj_carith_divi64", -"lj_carith_divu64", -"lj_carith_modi64", -"lj_carith_modu64", -"lj_carith_powi64", -"lj_carith_powu64", -"lj_cdata_newv", -"lj_cdata_setfin", -"strlen", -"memcpy", -"memset", -"lj_vm_errno", -"lj_carith_mul64", -"lj_carith_shl64", -"lj_carith_shr64", -"lj_carith_sar64", -"lj_carith_rol64", -"lj_carith_ror64", -}, - -traceerr = { -[0]="error thrown or hook called during recording", -"trace too short", -"trace too long", -"trace too deep", -"too many snapshots", -"blacklisted", -"retry recording", -"NYI: bytecode %d", -"leaving loop in root trace", -"inner loop in root trace", -"loop unroll limit reached", -"bad argument type", -"JIT compilation disabled for function", -"call unroll limit reached", -"down-recursion, restarting", -"NYI: unsupported variant of FastFunc %s", -"NYI: return to lower frame", -"store with nil or NaN key", -"missing metamethod", -"looping index lookup", -"NYI: mixed sparse/dense table", -"symbol not in cache", -"NYI: unsupported C type conversion", -"NYI: unsupported C function type", -"guard would always fail", -"too many PHIs", -"persistent type instability", -"failed to allocate mcode memory", -"machine code too long", -"hit mcode limit (retrying)", -"too many spill slots", -"inconsistent register allocation", -"NYI: cannot assemble IR instruction %d", -"NYI: PHI shuffling too complex", -"NYI: register coalescing too complex", -}, - -ffnames = { -[0]="Lua", -"C", -"assert", -"type", -"next", -"pairs", -"ipairs_aux", -"ipairs", -"getmetatable", -"setmetatable", -"getfenv", -"setfenv", -"rawget", -"rawset", -"rawequal", -"unpack", -"select", -"tonumber", -"tostring", -"error", -"pcall", -"xpcall", -"loadfile", -"load", -"loadstring", -"dofile", -"gcinfo", -"collectgarbage", -"newproxy", -"print", -"coroutine.status", -"coroutine.running", -"coroutine.isyieldable", -"coroutine.create", -"coroutine.yield", -"coroutine.resume", -"coroutine.wrap_aux", -"coroutine.wrap", -"math.abs", -"math.floor", -"math.ceil", -"math.sqrt", -"math.log10", -"math.exp", -"math.sin", -"math.cos", -"math.tan", -"math.asin", -"math.acos", -"math.atan", -"math.sinh", -"math.cosh", -"math.tanh", -"math.frexp", -"math.modf", -"math.log", -"math.atan2", -"math.pow", -"math.fmod", -"math.ldexp", -"math.min", -"math.max", -"math.random", -"math.randomseed", -"bit.tobit", -"bit.bnot", -"bit.bswap", -"bit.lshift", -"bit.rshift", -"bit.arshift", -"bit.rol", -"bit.ror", -"bit.band", -"bit.bor", -"bit.bxor", -"bit.tohex", -"string.byte", -"string.char", -"string.sub", -"string.rep", -"string.reverse", -"string.lower", -"string.upper", -"string.dump", -"string.find", -"string.match", -"string.gmatch_aux", -"string.gmatch", -"string.gsub", -"string.format", -"table.maxn", -"table.insert", -"table.concat", -"table.sort", -"table.new", -"table.clear", -"io.method.close", -"io.method.read", -"io.method.write", -"io.method.flush", -"io.method.seek", -"io.method.setvbuf", -"io.method.lines", -"io.method.__gc", -"io.method.__tostring", -"io.open", -"io.popen", -"io.tmpfile", -"io.close", -"io.read", -"io.write", -"io.flush", -"io.input", -"io.output", -"io.lines", -"io.type", -"os.execute", -"os.remove", -"os.rename", -"os.tmpname", -"os.getenv", -"os.exit", -"os.clock", -"os.date", -"os.time", -"os.difftime", -"os.setlocale", -"debug.getregistry", -"debug.getmetatable", -"debug.setmetatable", -"debug.getfenv", -"debug.setfenv", -"debug.getinfo", -"debug.getlocal", -"debug.setlocal", -"debug.getupvalue", -"debug.setupvalue", -"debug.upvalueid", -"debug.upvaluejoin", -"debug.sethook", -"debug.gethook", -"debug.debug", -"debug.traceback", -"jit.on", -"jit.off", -"jit.flush", -"jit.status", -"jit.security", -"jit.attach", -"jit.util.funcinfo", -"jit.util.funcbc", -"jit.util.funck", -"jit.util.funcuvname", -"jit.util.traceinfo", -"jit.util.traceir", -"jit.util.tracek", -"jit.util.tracesnap", -"jit.util.tracemc", -"jit.util.traceexitstub", -"jit.util.ircalladdr", -"jit.opt.start", -"jit.profile.start", -"jit.profile.stop", -"jit.profile.dumpstack", -"ffi.meta.__index", -"ffi.meta.__newindex", -"ffi.meta.__eq", -"ffi.meta.__len", -"ffi.meta.__lt", -"ffi.meta.__le", -"ffi.meta.__concat", -"ffi.meta.__call", -"ffi.meta.__add", -"ffi.meta.__sub", -"ffi.meta.__mul", -"ffi.meta.__div", -"ffi.meta.__mod", -"ffi.meta.__pow", -"ffi.meta.__unm", -"ffi.meta.__tostring", -"ffi.meta.__pairs", -"ffi.meta.__ipairs", -"ffi.clib.__index", -"ffi.clib.__newindex", -"ffi.clib.__gc", -"ffi.callback.free", -"ffi.callback.set", -"ffi.cdef", -"ffi.new", -"ffi.cast", -"ffi.typeof", -"ffi.typeinfo", -"ffi.istype", -"ffi.sizeof", -"ffi.alignof", -"ffi.offsetof", -"ffi.errno", -"ffi.string", -"ffi.copy", -"ffi.fill", -"ffi.abi", -"ffi.metatype", -"ffi.gc", -"ffi.load", -"buffer.method.free", -"buffer.method.reset", -"buffer.method.skip", -"buffer.method.set", -"buffer.method.put", -"buffer.method.putf", -"buffer.method.get", -"buffer.method.putcdata", -"buffer.method.reserve", -"buffer.method.commit", -"buffer.method.ref", -"buffer.method.encode", -"buffer.method.decode", -"buffer.method.__gc", -"buffer.method.__tostring", -"buffer.method.__len", -"buffer.new", -"buffer.encode", -"buffer.decode", -}, - -} - +-- This is a generated file. DO NOT EDIT! + +assert(require("jit").version == "LuaJIT 2.1.1700008891", "LuaJIT core/library version mismatch") + +return { + +bcnames = "ISLT ISGE ISLE ISGT ISEQV ISNEV ISEQS ISNES ISEQN ISNEN ISEQP ISNEP ISTC ISFC IST ISF ISTYPEISNUM MOV NOT UNM LEN ADDVN SUBVN MULVN DIVVN MODVN ADDNV SUBNV MULNV DIVNV MODNV ADDVV SUBVV MULVV DIVVV MODVV POW CAT KSTR KCDATAKSHORTKNUM KPRI KNIL UGET USETV USETS USETN USETP UCLO FNEW TNEW TDUP GGET GSET TGETV TGETS TGETB TGETR TSETV TSETS TSETB TSETM TSETR CALLM CALL CALLMTCALLT ITERC ITERN VARG ISNEXTRETM RET RET0 RET1 FORI JFORI FORL IFORL JFORL ITERL IITERLJITERLLOOP ILOOP JLOOP JMP FUNCF IFUNCFJFUNCFFUNCV IFUNCVJFUNCVFUNCC FUNCCW", + +irnames = "LT GE LE GT ULT UGE ULE UGT EQ NE ABC RETF NOP BASE PVAL GCSTEPHIOP LOOP USE PHI RENAMEPROF KPRI KINT KGC KPTR KKPTR KNULL KNUM KINT64KSLOT BNOT BSWAP BAND BOR BXOR BSHL BSHR BSAR BROL BROR ADD SUB MUL DIV MOD POW NEG ABS LDEXP MIN MAX FPMATHADDOV SUBOV MULOV AREF HREFK HREF NEWREFUREFO UREFC FREF TMPREFSTRREFLREF ALOAD HLOAD ULOAD FLOAD XLOAD SLOAD VLOAD ALEN ASTOREHSTOREUSTOREFSTOREXSTORESNEW XSNEW TNEW TDUP CNEW CNEWI BUFHDRBUFPUTBUFSTRTBAR OBAR XBAR CONV TOBIT TOSTR STRTO CALLN CALLA CALLL CALLS CALLXSCARG ", + +irfpm = { [0]="floor", "ceil", "trunc", "sqrt", "log", "log2", "other", }, + +irfield = { [0]="str.len", "func.env", "func.pc", "func.ffid", "thread.env", "tab.meta", "tab.array", "tab.node", "tab.asize", "tab.hmask", "tab.nomm", "udata.meta", "udata.udtype", "udata.file", "sbuf.w", "sbuf.e", "sbuf.b", "sbuf.l", "sbuf.ref", "sbuf.r", "cdata.ctypeid", "cdata.ptr", "cdata.int", "cdata.int64", "cdata.int64_4", }, + +ircall = { +[0]="lj_str_cmp", +"lj_str_find", +"lj_str_new", +"lj_strscan_num", +"lj_strfmt_int", +"lj_strfmt_num", +"lj_strfmt_char", +"lj_strfmt_putint", +"lj_strfmt_putnum", +"lj_strfmt_putquoted", +"lj_strfmt_putfxint", +"lj_strfmt_putfnum_int", +"lj_strfmt_putfnum_uint", +"lj_strfmt_putfnum", +"lj_strfmt_putfstr", +"lj_strfmt_putfchar", +"lj_buf_putmem", +"lj_buf_putstr", +"lj_buf_putchar", +"lj_buf_putstr_reverse", +"lj_buf_putstr_lower", +"lj_buf_putstr_upper", +"lj_buf_putstr_rep", +"lj_buf_puttab", +"lj_bufx_set", +"lj_bufx_more", +"lj_serialize_put", +"lj_serialize_get", +"lj_serialize_encode", +"lj_serialize_decode", +"lj_buf_tostr", +"lj_tab_new_ah", +"lj_tab_new1", +"lj_tab_dup", +"lj_tab_clear", +"lj_tab_newkey", +"lj_tab_keyindex", +"lj_vm_next", +"lj_tab_len", +"lj_tab_len_hint", +"lj_gc_step_jit", +"lj_gc_barrieruv", +"lj_mem_newgco", +"lj_prng_u64d", +"lj_vm_modi", +"log10", +"exp", +"sin", +"cos", +"tan", +"asin", +"acos", +"atan", +"sinh", +"cosh", +"tanh", +"fputc", +"fwrite", +"fflush", +"lj_vm_floor", +"lj_vm_ceil", +"lj_vm_trunc", +"sqrt", +"log", +"lj_vm_log2", +"pow", +"atan2", +"ldexp", +"lj_vm_tobit", +"softfp_add", +"softfp_sub", +"softfp_mul", +"softfp_div", +"softfp_cmp", +"softfp_i2d", +"softfp_d2i", +"lj_vm_sfmin", +"lj_vm_sfmax", +"lj_vm_tointg", +"softfp_ui2d", +"softfp_f2d", +"softfp_d2ui", +"softfp_d2f", +"softfp_i2f", +"softfp_ui2f", +"softfp_f2i", +"softfp_f2ui", +"fp64_l2d", +"fp64_ul2d", +"fp64_l2f", +"fp64_ul2f", +"fp64_d2l", +"fp64_d2ul", +"fp64_f2l", +"fp64_f2ul", +"lj_carith_divi64", +"lj_carith_divu64", +"lj_carith_modi64", +"lj_carith_modu64", +"lj_carith_powi64", +"lj_carith_powu64", +"lj_cdata_newv", +"lj_cdata_setfin", +"strlen", +"memcpy", +"memset", +"lj_vm_errno", +"lj_carith_mul64", +"lj_carith_shl64", +"lj_carith_shr64", +"lj_carith_sar64", +"lj_carith_rol64", +"lj_carith_ror64", +}, + +traceerr = { +[0]="error thrown or hook called during recording", +"trace too short", +"trace too long", +"trace too deep", +"too many snapshots", +"blacklisted", +"retry recording", +"NYI: bytecode %d", +"leaving loop in root trace", +"inner loop in root trace", +"loop unroll limit reached", +"bad argument type", +"JIT compilation disabled for function", +"call unroll limit reached", +"down-recursion, restarting", +"NYI: unsupported variant of FastFunc %s", +"NYI: return to lower frame", +"store with nil or NaN key", +"missing metamethod", +"looping index lookup", +"NYI: mixed sparse/dense table", +"symbol not in cache", +"NYI: unsupported C type conversion", +"NYI: unsupported C function type", +"guard would always fail", +"too many PHIs", +"persistent type instability", +"failed to allocate mcode memory", +"machine code too long", +"hit mcode limit (retrying)", +"too many spill slots", +"inconsistent register allocation", +"NYI: cannot assemble IR instruction %d", +"NYI: PHI shuffling too complex", +"NYI: register coalescing too complex", +}, + +ffnames = { +[0]="Lua", +"C", +"assert", +"type", +"next", +"pairs", +"ipairs_aux", +"ipairs", +"getmetatable", +"setmetatable", +"getfenv", +"setfenv", +"rawget", +"rawset", +"rawequal", +"unpack", +"select", +"tonumber", +"tostring", +"error", +"pcall", +"xpcall", +"loadfile", +"load", +"loadstring", +"dofile", +"gcinfo", +"collectgarbage", +"newproxy", +"print", +"coroutine.status", +"coroutine.running", +"coroutine.isyieldable", +"coroutine.create", +"coroutine.yield", +"coroutine.resume", +"coroutine.wrap_aux", +"coroutine.wrap", +"math.abs", +"math.floor", +"math.ceil", +"math.sqrt", +"math.log10", +"math.exp", +"math.sin", +"math.cos", +"math.tan", +"math.asin", +"math.acos", +"math.atan", +"math.sinh", +"math.cosh", +"math.tanh", +"math.frexp", +"math.modf", +"math.log", +"math.atan2", +"math.pow", +"math.fmod", +"math.ldexp", +"math.min", +"math.max", +"math.random", +"math.randomseed", +"bit.tobit", +"bit.bnot", +"bit.bswap", +"bit.lshift", +"bit.rshift", +"bit.arshift", +"bit.rol", +"bit.ror", +"bit.band", +"bit.bor", +"bit.bxor", +"bit.tohex", +"string.byte", +"string.char", +"string.sub", +"string.rep", +"string.reverse", +"string.lower", +"string.upper", +"string.dump", +"string.find", +"string.match", +"string.gmatch_aux", +"string.gmatch", +"string.gsub", +"string.format", +"table.maxn", +"table.insert", +"table.concat", +"table.sort", +"table.new", +"table.clear", +"io.method.close", +"io.method.read", +"io.method.write", +"io.method.flush", +"io.method.seek", +"io.method.setvbuf", +"io.method.lines", +"io.method.__gc", +"io.method.__tostring", +"io.open", +"io.popen", +"io.tmpfile", +"io.close", +"io.read", +"io.write", +"io.flush", +"io.input", +"io.output", +"io.lines", +"io.type", +"os.execute", +"os.remove", +"os.rename", +"os.tmpname", +"os.getenv", +"os.exit", +"os.clock", +"os.date", +"os.time", +"os.difftime", +"os.setlocale", +"debug.getregistry", +"debug.getmetatable", +"debug.setmetatable", +"debug.getfenv", +"debug.setfenv", +"debug.getinfo", +"debug.getlocal", +"debug.setlocal", +"debug.getupvalue", +"debug.setupvalue", +"debug.upvalueid", +"debug.upvaluejoin", +"debug.sethook", +"debug.gethook", +"debug.debug", +"debug.traceback", +"jit.on", +"jit.off", +"jit.flush", +"jit.status", +"jit.security", +"jit.attach", +"jit.util.funcinfo", +"jit.util.funcbc", +"jit.util.funck", +"jit.util.funcuvname", +"jit.util.traceinfo", +"jit.util.traceir", +"jit.util.tracek", +"jit.util.tracesnap", +"jit.util.tracemc", +"jit.util.traceexitstub", +"jit.util.ircalladdr", +"jit.opt.start", +"jit.profile.start", +"jit.profile.stop", +"jit.profile.dumpstack", +"ffi.meta.__index", +"ffi.meta.__newindex", +"ffi.meta.__eq", +"ffi.meta.__len", +"ffi.meta.__lt", +"ffi.meta.__le", +"ffi.meta.__concat", +"ffi.meta.__call", +"ffi.meta.__add", +"ffi.meta.__sub", +"ffi.meta.__mul", +"ffi.meta.__div", +"ffi.meta.__mod", +"ffi.meta.__pow", +"ffi.meta.__unm", +"ffi.meta.__tostring", +"ffi.meta.__pairs", +"ffi.meta.__ipairs", +"ffi.clib.__index", +"ffi.clib.__newindex", +"ffi.clib.__gc", +"ffi.callback.free", +"ffi.callback.set", +"ffi.cdef", +"ffi.new", +"ffi.cast", +"ffi.typeof", +"ffi.typeinfo", +"ffi.istype", +"ffi.sizeof", +"ffi.alignof", +"ffi.offsetof", +"ffi.errno", +"ffi.string", +"ffi.copy", +"ffi.fill", +"ffi.abi", +"ffi.metatype", +"ffi.gc", +"ffi.load", +"buffer.method.free", +"buffer.method.reset", +"buffer.method.skip", +"buffer.method.set", +"buffer.method.put", +"buffer.method.putf", +"buffer.method.get", +"buffer.method.putcdata", +"buffer.method.reserve", +"buffer.method.commit", +"buffer.method.ref", +"buffer.method.encode", +"buffer.method.decode", +"buffer.method.__gc", +"buffer.method.__tostring", +"buffer.method.__len", +"buffer.new", +"buffer.encode", +"buffer.decode", +}, + +} + diff --git a/love/src/jni/LuaJIT-2.1/android/x86/jit/zone.lua b/love/src/jni/LuaJIT-2.1/android/x86/jit/zone.lua index 1308cb74..55dc76d3 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86/jit/zone.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86/jit/zone.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT profiler zones. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- diff --git a/love/src/jni/LuaJIT-2.1/android/x86/libluajit.a b/love/src/jni/LuaJIT-2.1/android/x86/libluajit.a index 16605301..6545b421 100644 Binary files a/love/src/jni/LuaJIT-2.1/android/x86/libluajit.a and b/love/src/jni/LuaJIT-2.1/android/x86/libluajit.a differ diff --git a/love/src/jni/LuaJIT-2.1/android/x86/luajit.h b/love/src/jni/LuaJIT-2.1/android/x86/luajit.h new file mode 100644 index 00000000..94814d91 --- /dev/null +++ b/love/src/jni/LuaJIT-2.1/android/x86/luajit.h @@ -0,0 +1,79 @@ +/* +** LuaJIT -- a Just-In-Time Compiler for Lua. https://luajit.org/ +** +** Copyright (C) 2005-2023 Mike Pall. All rights reserved. +** +** Permission is hereby granted, free of charge, to any person obtaining +** a copy of this software and associated documentation files (the +** "Software"), to deal in the Software without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Software, and to +** permit persons to whom the Software is furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be +** included in all copies or substantial portions of the Software. +** +** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +** +** [ MIT license: https://www.opensource.org/licenses/mit-license.php ] +*/ + +#ifndef _LUAJIT_H +#define _LUAJIT_H + +#include "lua.h" + +#define LUAJIT_VERSION "LuaJIT 2.1.1700008891" +#define LUAJIT_VERSION_NUM 20199 /* Deprecated. */ +#define LUAJIT_VERSION_SYM luaJIT_version_2_1_1700008891 +#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2023 Mike Pall" +#define LUAJIT_URL "https://luajit.org/" + +/* Modes for luaJIT_setmode. */ +#define LUAJIT_MODE_MASK 0x00ff + +enum { + LUAJIT_MODE_ENGINE, /* Set mode for whole JIT engine. */ + LUAJIT_MODE_DEBUG, /* Set debug mode (idx = level). */ + + LUAJIT_MODE_FUNC, /* Change mode for a function. */ + LUAJIT_MODE_ALLFUNC, /* Recurse into subroutine protos. */ + LUAJIT_MODE_ALLSUBFUNC, /* Change only the subroutines. */ + + LUAJIT_MODE_TRACE, /* Flush a compiled trace. */ + + LUAJIT_MODE_WRAPCFUNC = 0x10, /* Set wrapper mode for C function calls. */ + + LUAJIT_MODE_MAX +}; + +/* Flags or'ed in to the mode. */ +#define LUAJIT_MODE_OFF 0x0000 /* Turn feature off. */ +#define LUAJIT_MODE_ON 0x0100 /* Turn feature on. */ +#define LUAJIT_MODE_FLUSH 0x0200 /* Flush JIT-compiled code. */ + +/* LuaJIT public C API. */ + +/* Control the JIT engine. */ +LUA_API int luaJIT_setmode(lua_State *L, int idx, int mode); + +/* Low-overhead profiling API. */ +typedef void (*luaJIT_profile_callback)(void *data, lua_State *L, + int samples, int vmstate); +LUA_API void luaJIT_profile_start(lua_State *L, const char *mode, + luaJIT_profile_callback cb, void *data); +LUA_API void luaJIT_profile_stop(lua_State *L); +LUA_API const char *luaJIT_profile_dumpstack(lua_State *L, const char *fmt, + int depth, size_t *len); + +/* Enforce (dynamic) linker error for version mismatches. Call from main. */ +LUA_API void LUAJIT_VERSION_SYM(void); + +#endif diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/bc.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/bc.lua index 8d0844c0..f1a63b9c 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/bc.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/bc.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT bytecode listing module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -41,7 +41,6 @@ -- Cache some library functions and objects. local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") local jutil = require("jit.util") local vmdef = require("jit.vmdef") local bit = require("bit") diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/bcsave.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/bcsave.lua index 90fe9daf..390d297c 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/bcsave.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/bcsave.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT module to save/list bytecode. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -11,7 +11,7 @@ ------------------------------------------------------------------------------ local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") +assert(jit.version_num == 20199, "LuaJIT core/library version mismatch") local bit = require("bit") -- Symbol name prefix for LuaJIT bytecode. @@ -38,7 +38,7 @@ Save LuaJIT bytecode: luajit -b[options] input output -- Stop handling options. - Use stdin as input and/or stdout as output. -File types: c h obj o raw (default) +File types: c cc h obj o raw (default) ]] os.exit(1) end @@ -81,7 +81,7 @@ end ------------------------------------------------------------------------------ local map_type = { - raw = "raw", c = "c", h = "h", o = "obj", obj = "obj", + raw = "raw", c = "c", cc = "c", h = "h", o = "obj", obj = "obj", } local map_arch = { diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_arm.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_arm.lua index 18ab68df..a7546a45 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_arm.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_arm.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT ARM disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This is a helper module used by the LuaJIT machine code dumper module. diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_arm64.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_arm64.lua index 531584a1..84677666 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_arm64.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_arm64.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT ARM64 disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h -- -- Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. @@ -107,24 +107,20 @@ local map_logsr = { -- Logical, shifted register. [0] = { shift = 29, mask = 3, [0] = { - shift = 21, mask = 7, - [0] = "andDNMSg", "bicDNMSg", "andDNMSg", "bicDNMSg", - "andDNMSg", "bicDNMSg", "andDNMg", "bicDNMg" + shift = 21, mask = 1, + [0] = "andDNMSg", "bicDNMSg" }, { - shift = 21, mask = 7, - [0] ="orr|movDN0MSg", "orn|mvnDN0MSg", "orr|movDN0MSg", "orn|mvnDN0MSg", - "orr|movDN0MSg", "orn|mvnDN0MSg", "orr|movDN0Mg", "orn|mvnDN0Mg" + shift = 21, mask = 1, + [0] = "orr|movDN0MSg", "orn|mvnDN0MSg" }, { - shift = 21, mask = 7, - [0] = "eorDNMSg", "eonDNMSg", "eorDNMSg", "eonDNMSg", - "eorDNMSg", "eonDNMSg", "eorDNMg", "eonDNMg" + shift = 21, mask = 1, + [0] = "eorDNMSg", "eonDNMSg" }, { - shift = 21, mask = 7, - [0] = "ands|tstD0NMSg", "bicsDNMSg", "ands|tstD0NMSg", "bicsDNMSg", - "ands|tstD0NMSg", "bicsDNMSg", "ands|tstD0NMg", "bicsDNMg" + shift = 21, mask = 1, + [0] = "ands|tstD0NMSg", "bicsDNMSg" } }, false -- unallocated @@ -132,24 +128,20 @@ local map_logsr = { -- Logical, shifted register. { shift = 29, mask = 3, [0] = { - shift = 21, mask = 7, - [0] = "andDNMSg", "bicDNMSg", "andDNMSg", "bicDNMSg", - "andDNMSg", "bicDNMSg", "andDNMg", "bicDNMg" + shift = 21, mask = 1, + [0] = "andDNMSg", "bicDNMSg" }, { - shift = 21, mask = 7, - [0] = "orr|movDN0MSg", "orn|mvnDN0MSg", "orr|movDN0MSg", "orn|mvnDN0MSg", - "orr|movDN0MSg", "orn|mvnDN0MSg", "orr|movDN0Mg", "orn|mvnDN0Mg" + shift = 21, mask = 1, + [0] = "orr|movDN0MSg", "orn|mvnDN0MSg" }, { - shift = 21, mask = 7, - [0] = "eorDNMSg", "eonDNMSg", "eorDNMSg", "eonDNMSg", - "eorDNMSg", "eonDNMSg", "eorDNMg", "eonDNMg" + shift = 21, mask = 1, + [0] = "eorDNMSg", "eonDNMSg" }, { - shift = 21, mask = 7, - [0] = "ands|tstD0NMSg", "bicsDNMSg", "ands|tstD0NMSg", "bicsDNMSg", - "ands|tstD0NMSg", "bicsDNMSg", "ands|tstD0NMg", "bicsDNMg" + shift = 21, mask = 1, + [0] = "ands|tstD0NMSg", "bicsDNMSg" } } } @@ -735,7 +727,7 @@ local map_cond = { "hi", "ls", "ge", "lt", "gt", "le", "al", } -local map_shift = { [0] = "lsl", "lsr", "asr", } +local map_shift = { [0] = "lsl", "lsr", "asr", "ror"} local map_extend = { [0] = "uxtb", "uxth", "uxtw", "uxtx", "sxtb", "sxth", "sxtw", "sxtx", @@ -956,7 +948,7 @@ local function disass_ins(ctx) elseif p == "U" then local rn = map_regs.x[band(rshift(op, 5), 31)] local sz = band(rshift(op, 30), 3) - local imm12 = lshift(arshift(lshift(op, 10), 20), sz) + local imm12 = lshift(rshift(lshift(op, 10), 20), sz) if imm12 ~= 0 then x = "["..rn..", #"..imm12.."]" else @@ -993,8 +985,7 @@ local function disass_ins(ctx) x = x.."]" end elseif p == "P" then - local opcv, sh = rshift(op, 26), 2 - if opcv >= 0x2a then sh = 4 elseif opcv >= 0x1b then sh = 3 end + local sh = 2 + rshift(op, 31 - band(rshift(op, 26), 1)) local imm7 = lshift(arshift(lshift(op, 10), 25), sh) local rn = map_regs.x[band(rshift(op, 5), 31)] local ind = band(rshift(op, 23), 3) diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_arm64be.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_arm64be.lua index 7337f5b7..f7a56352 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_arm64be.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_arm64be.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT ARM64BE disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- ARM64 instructions are always little-endian. So just forward to the diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips.lua index 05dc30fd..b0e99df4 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT/X license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This is a helper module used by the LuaJIT machine code dumper module. diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips64.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips64.lua index 1236e524..5f3a4dab 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips64.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips64.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS64 disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the big-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips64el.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips64el.lua index 7c478d2d..ea513649 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips64el.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips64el.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS64EL disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the little-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips64r6.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips64r6.lua index c5789ce4..1d948411 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips64r6.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips64r6.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS64R6 disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the r6 big-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips64r6el.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips64r6el.lua index f67f6240..26592e17 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips64r6el.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mips64r6el.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPS64R6EL disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the r6 little-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mipsel.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mipsel.lua index a4fa6c60..6906a779 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mipsel.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_mipsel.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT MIPSEL disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the little-endian functions from the diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_ppc.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_ppc.lua index 8f65f25a..95c3da84 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_ppc.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_ppc.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT PPC disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT/X license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This is a helper module used by the LuaJIT machine code dumper module. diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_x64.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_x64.lua index d076c6ae..eb21f044 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_x64.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_x64.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT x64 disassembler wrapper module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This module just exports the 64 bit functions from the combined diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_x86.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_x86.lua index 84492fff..40b8218e 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_x86.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dis_x86.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT x86/x64 disassembler module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- This is a helper module used by the LuaJIT machine code dumper module. diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dump.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dump.lua index 18e7a4b7..746732f9 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dump.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/dump.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT compiler dump module. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -55,7 +55,6 @@ -- Cache some library functions and objects. local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") local jutil = require("jit.util") local vmdef = require("jit.vmdef") local funcinfo, funcbc = jutil.funcinfo, jutil.funcbc diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/p.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/p.lua index f225c312..36f836c5 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/p.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/p.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT profiler. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -41,7 +41,6 @@ -- Cache some library functions and objects. local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") local profile = require("jit.profile") local vmdef = require("jit.vmdef") local math = math diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/v.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/v.lua index ac8b19db..8e91f494 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/v.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/v.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- Verbose mode of the LuaJIT compiler. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- @@ -59,7 +59,6 @@ -- Cache some library functions and objects. local jit = require("jit") -assert(jit.version_num == 20100, "LuaJIT core/library version mismatch") local jutil = require("jit.util") local vmdef = require("jit.vmdef") local funcinfo, traceinfo = jutil.funcinfo, jutil.traceinfo diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/vmdef.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/vmdef.lua index 9ed150be..ef31b783 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/vmdef.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/vmdef.lua @@ -1,394 +1,396 @@ --- This is a generated file. DO NOT EDIT! - -return { - -bcnames = "ISLT ISGE ISLE ISGT ISEQV ISNEV ISEQS ISNES ISEQN ISNEN ISEQP ISNEP ISTC ISFC IST ISF ISTYPEISNUM MOV NOT UNM LEN ADDVN SUBVN MULVN DIVVN MODVN ADDNV SUBNV MULNV DIVNV MODNV ADDVV SUBVV MULVV DIVVV MODVV POW CAT KSTR KCDATAKSHORTKNUM KPRI KNIL UGET USETV USETS USETN USETP UCLO FNEW TNEW TDUP GGET GSET TGETV TGETS TGETB TGETR TSETV TSETS TSETB TSETM TSETR CALLM CALL CALLMTCALLT ITERC ITERN VARG ISNEXTRETM RET RET0 RET1 FORI JFORI FORL IFORL JFORL ITERL IITERLJITERLLOOP ILOOP JLOOP JMP FUNCF IFUNCFJFUNCFFUNCV IFUNCVJFUNCVFUNCC FUNCCW", - -irnames = "LT GE LE GT ULT UGE ULE UGT EQ NE ABC RETF NOP BASE PVAL GCSTEPHIOP LOOP USE PHI RENAMEPROF KPRI KINT KGC KPTR KKPTR KNULL KNUM KINT64KSLOT BNOT BSWAP BAND BOR BXOR BSHL BSHR BSAR BROL BROR ADD SUB MUL DIV MOD POW NEG ABS LDEXP MIN MAX FPMATHADDOV SUBOV MULOV AREF HREFK HREF NEWREFUREFO UREFC FREF TMPREFSTRREFLREF ALOAD HLOAD ULOAD FLOAD XLOAD SLOAD VLOAD ALEN ASTOREHSTOREUSTOREFSTOREXSTORESNEW XSNEW TNEW TDUP CNEW CNEWI BUFHDRBUFPUTBUFSTRTBAR OBAR XBAR CONV TOBIT TOSTR STRTO CALLN CALLA CALLL CALLS CALLXSCARG ", - -irfpm = { [0]="floor", "ceil", "trunc", "sqrt", "log", "log2", "other", }, - -irfield = { [0]="str.len", "func.env", "func.pc", "func.ffid", "thread.env", "tab.meta", "tab.array", "tab.node", "tab.asize", "tab.hmask", "tab.nomm", "udata.meta", "udata.udtype", "udata.file", "sbuf.w", "sbuf.e", "sbuf.b", "sbuf.l", "sbuf.ref", "sbuf.r", "cdata.ctypeid", "cdata.ptr", "cdata.int", "cdata.int64", "cdata.int64_4", }, - -ircall = { -[0]="lj_str_cmp", -"lj_str_find", -"lj_str_new", -"lj_strscan_num", -"lj_strfmt_int", -"lj_strfmt_num", -"lj_strfmt_char", -"lj_strfmt_putint", -"lj_strfmt_putnum", -"lj_strfmt_putquoted", -"lj_strfmt_putfxint", -"lj_strfmt_putfnum_int", -"lj_strfmt_putfnum_uint", -"lj_strfmt_putfnum", -"lj_strfmt_putfstr", -"lj_strfmt_putfchar", -"lj_buf_putmem", -"lj_buf_putstr", -"lj_buf_putchar", -"lj_buf_putstr_reverse", -"lj_buf_putstr_lower", -"lj_buf_putstr_upper", -"lj_buf_putstr_rep", -"lj_buf_puttab", -"lj_bufx_set", -"lj_bufx_more", -"lj_serialize_put", -"lj_serialize_get", -"lj_serialize_encode", -"lj_serialize_decode", -"lj_buf_tostr", -"lj_tab_new_ah", -"lj_tab_new1", -"lj_tab_dup", -"lj_tab_clear", -"lj_tab_newkey", -"lj_tab_keyindex", -"lj_vm_next", -"lj_tab_len", -"lj_tab_len_hint", -"lj_gc_step_jit", -"lj_gc_barrieruv", -"lj_mem_newgco", -"lj_prng_u64d", -"lj_vm_modi", -"log10", -"exp", -"sin", -"cos", -"tan", -"asin", -"acos", -"atan", -"sinh", -"cosh", -"tanh", -"fputc", -"fwrite", -"fflush", -"lj_vm_floor", -"lj_vm_ceil", -"lj_vm_trunc", -"sqrt", -"log", -"lj_vm_log2", -"pow", -"atan2", -"ldexp", -"lj_vm_tobit", -"softfp_add", -"softfp_sub", -"softfp_mul", -"softfp_div", -"softfp_cmp", -"softfp_i2d", -"softfp_d2i", -"lj_vm_sfmin", -"lj_vm_sfmax", -"lj_vm_tointg", -"softfp_ui2d", -"softfp_f2d", -"softfp_d2ui", -"softfp_d2f", -"softfp_i2f", -"softfp_ui2f", -"softfp_f2i", -"softfp_f2ui", -"fp64_l2d", -"fp64_ul2d", -"fp64_l2f", -"fp64_ul2f", -"fp64_d2l", -"fp64_d2ul", -"fp64_f2l", -"fp64_f2ul", -"lj_carith_divi64", -"lj_carith_divu64", -"lj_carith_modi64", -"lj_carith_modu64", -"lj_carith_powi64", -"lj_carith_powu64", -"lj_cdata_newv", -"lj_cdata_setfin", -"strlen", -"memcpy", -"memset", -"lj_vm_errno", -"lj_carith_mul64", -"lj_carith_shl64", -"lj_carith_shr64", -"lj_carith_sar64", -"lj_carith_rol64", -"lj_carith_ror64", -}, - -traceerr = { -[0]="error thrown or hook called during recording", -"trace too short", -"trace too long", -"trace too deep", -"too many snapshots", -"blacklisted", -"retry recording", -"NYI: bytecode %d", -"leaving loop in root trace", -"inner loop in root trace", -"loop unroll limit reached", -"bad argument type", -"JIT compilation disabled for function", -"call unroll limit reached", -"down-recursion, restarting", -"NYI: unsupported variant of FastFunc %s", -"NYI: return to lower frame", -"store with nil or NaN key", -"missing metamethod", -"looping index lookup", -"NYI: mixed sparse/dense table", -"symbol not in cache", -"NYI: unsupported C type conversion", -"NYI: unsupported C function type", -"guard would always fail", -"too many PHIs", -"persistent type instability", -"failed to allocate mcode memory", -"machine code too long", -"hit mcode limit (retrying)", -"too many spill slots", -"inconsistent register allocation", -"NYI: cannot assemble IR instruction %d", -"NYI: PHI shuffling too complex", -"NYI: register coalescing too complex", -}, - -ffnames = { -[0]="Lua", -"C", -"assert", -"type", -"next", -"pairs", -"ipairs_aux", -"ipairs", -"getmetatable", -"setmetatable", -"getfenv", -"setfenv", -"rawget", -"rawset", -"rawequal", -"unpack", -"select", -"tonumber", -"tostring", -"error", -"pcall", -"xpcall", -"loadfile", -"load", -"loadstring", -"dofile", -"gcinfo", -"collectgarbage", -"newproxy", -"print", -"coroutine.status", -"coroutine.running", -"coroutine.isyieldable", -"coroutine.create", -"coroutine.yield", -"coroutine.resume", -"coroutine.wrap_aux", -"coroutine.wrap", -"math.abs", -"math.floor", -"math.ceil", -"math.sqrt", -"math.log10", -"math.exp", -"math.sin", -"math.cos", -"math.tan", -"math.asin", -"math.acos", -"math.atan", -"math.sinh", -"math.cosh", -"math.tanh", -"math.frexp", -"math.modf", -"math.log", -"math.atan2", -"math.pow", -"math.fmod", -"math.ldexp", -"math.min", -"math.max", -"math.random", -"math.randomseed", -"bit.tobit", -"bit.bnot", -"bit.bswap", -"bit.lshift", -"bit.rshift", -"bit.arshift", -"bit.rol", -"bit.ror", -"bit.band", -"bit.bor", -"bit.bxor", -"bit.tohex", -"string.byte", -"string.char", -"string.sub", -"string.rep", -"string.reverse", -"string.lower", -"string.upper", -"string.dump", -"string.find", -"string.match", -"string.gmatch_aux", -"string.gmatch", -"string.gsub", -"string.format", -"table.maxn", -"table.insert", -"table.concat", -"table.sort", -"table.new", -"table.clear", -"io.method.close", -"io.method.read", -"io.method.write", -"io.method.flush", -"io.method.seek", -"io.method.setvbuf", -"io.method.lines", -"io.method.__gc", -"io.method.__tostring", -"io.open", -"io.popen", -"io.tmpfile", -"io.close", -"io.read", -"io.write", -"io.flush", -"io.input", -"io.output", -"io.lines", -"io.type", -"os.execute", -"os.remove", -"os.rename", -"os.tmpname", -"os.getenv", -"os.exit", -"os.clock", -"os.date", -"os.time", -"os.difftime", -"os.setlocale", -"debug.getregistry", -"debug.getmetatable", -"debug.setmetatable", -"debug.getfenv", -"debug.setfenv", -"debug.getinfo", -"debug.getlocal", -"debug.setlocal", -"debug.getupvalue", -"debug.setupvalue", -"debug.upvalueid", -"debug.upvaluejoin", -"debug.sethook", -"debug.gethook", -"debug.debug", -"debug.traceback", -"jit.on", -"jit.off", -"jit.flush", -"jit.status", -"jit.security", -"jit.attach", -"jit.util.funcinfo", -"jit.util.funcbc", -"jit.util.funck", -"jit.util.funcuvname", -"jit.util.traceinfo", -"jit.util.traceir", -"jit.util.tracek", -"jit.util.tracesnap", -"jit.util.tracemc", -"jit.util.traceexitstub", -"jit.util.ircalladdr", -"jit.opt.start", -"jit.profile.start", -"jit.profile.stop", -"jit.profile.dumpstack", -"ffi.meta.__index", -"ffi.meta.__newindex", -"ffi.meta.__eq", -"ffi.meta.__len", -"ffi.meta.__lt", -"ffi.meta.__le", -"ffi.meta.__concat", -"ffi.meta.__call", -"ffi.meta.__add", -"ffi.meta.__sub", -"ffi.meta.__mul", -"ffi.meta.__div", -"ffi.meta.__mod", -"ffi.meta.__pow", -"ffi.meta.__unm", -"ffi.meta.__tostring", -"ffi.meta.__pairs", -"ffi.meta.__ipairs", -"ffi.clib.__index", -"ffi.clib.__newindex", -"ffi.clib.__gc", -"ffi.callback.free", -"ffi.callback.set", -"ffi.cdef", -"ffi.new", -"ffi.cast", -"ffi.typeof", -"ffi.typeinfo", -"ffi.istype", -"ffi.sizeof", -"ffi.alignof", -"ffi.offsetof", -"ffi.errno", -"ffi.string", -"ffi.copy", -"ffi.fill", -"ffi.abi", -"ffi.metatype", -"ffi.gc", -"ffi.load", -"buffer.method.free", -"buffer.method.reset", -"buffer.method.skip", -"buffer.method.set", -"buffer.method.put", -"buffer.method.putf", -"buffer.method.get", -"buffer.method.putcdata", -"buffer.method.reserve", -"buffer.method.commit", -"buffer.method.ref", -"buffer.method.encode", -"buffer.method.decode", -"buffer.method.__gc", -"buffer.method.__tostring", -"buffer.method.__len", -"buffer.new", -"buffer.encode", -"buffer.decode", -}, - -} - +-- This is a generated file. DO NOT EDIT! + +assert(require("jit").version == "LuaJIT 2.1.1700008891", "LuaJIT core/library version mismatch") + +return { + +bcnames = "ISLT ISGE ISLE ISGT ISEQV ISNEV ISEQS ISNES ISEQN ISNEN ISEQP ISNEP ISTC ISFC IST ISF ISTYPEISNUM MOV NOT UNM LEN ADDVN SUBVN MULVN DIVVN MODVN ADDNV SUBNV MULNV DIVNV MODNV ADDVV SUBVV MULVV DIVVV MODVV POW CAT KSTR KCDATAKSHORTKNUM KPRI KNIL UGET USETV USETS USETN USETP UCLO FNEW TNEW TDUP GGET GSET TGETV TGETS TGETB TGETR TSETV TSETS TSETB TSETM TSETR CALLM CALL CALLMTCALLT ITERC ITERN VARG ISNEXTRETM RET RET0 RET1 FORI JFORI FORL IFORL JFORL ITERL IITERLJITERLLOOP ILOOP JLOOP JMP FUNCF IFUNCFJFUNCFFUNCV IFUNCVJFUNCVFUNCC FUNCCW", + +irnames = "LT GE LE GT ULT UGE ULE UGT EQ NE ABC RETF NOP BASE PVAL GCSTEPHIOP LOOP USE PHI RENAMEPROF KPRI KINT KGC KPTR KKPTR KNULL KNUM KINT64KSLOT BNOT BSWAP BAND BOR BXOR BSHL BSHR BSAR BROL BROR ADD SUB MUL DIV MOD POW NEG ABS LDEXP MIN MAX FPMATHADDOV SUBOV MULOV AREF HREFK HREF NEWREFUREFO UREFC FREF TMPREFSTRREFLREF ALOAD HLOAD ULOAD FLOAD XLOAD SLOAD VLOAD ALEN ASTOREHSTOREUSTOREFSTOREXSTORESNEW XSNEW TNEW TDUP CNEW CNEWI BUFHDRBUFPUTBUFSTRTBAR OBAR XBAR CONV TOBIT TOSTR STRTO CALLN CALLA CALLL CALLS CALLXSCARG ", + +irfpm = { [0]="floor", "ceil", "trunc", "sqrt", "log", "log2", "other", }, + +irfield = { [0]="str.len", "func.env", "func.pc", "func.ffid", "thread.env", "tab.meta", "tab.array", "tab.node", "tab.asize", "tab.hmask", "tab.nomm", "udata.meta", "udata.udtype", "udata.file", "sbuf.w", "sbuf.e", "sbuf.b", "sbuf.l", "sbuf.ref", "sbuf.r", "cdata.ctypeid", "cdata.ptr", "cdata.int", "cdata.int64", "cdata.int64_4", }, + +ircall = { +[0]="lj_str_cmp", +"lj_str_find", +"lj_str_new", +"lj_strscan_num", +"lj_strfmt_int", +"lj_strfmt_num", +"lj_strfmt_char", +"lj_strfmt_putint", +"lj_strfmt_putnum", +"lj_strfmt_putquoted", +"lj_strfmt_putfxint", +"lj_strfmt_putfnum_int", +"lj_strfmt_putfnum_uint", +"lj_strfmt_putfnum", +"lj_strfmt_putfstr", +"lj_strfmt_putfchar", +"lj_buf_putmem", +"lj_buf_putstr", +"lj_buf_putchar", +"lj_buf_putstr_reverse", +"lj_buf_putstr_lower", +"lj_buf_putstr_upper", +"lj_buf_putstr_rep", +"lj_buf_puttab", +"lj_bufx_set", +"lj_bufx_more", +"lj_serialize_put", +"lj_serialize_get", +"lj_serialize_encode", +"lj_serialize_decode", +"lj_buf_tostr", +"lj_tab_new_ah", +"lj_tab_new1", +"lj_tab_dup", +"lj_tab_clear", +"lj_tab_newkey", +"lj_tab_keyindex", +"lj_vm_next", +"lj_tab_len", +"lj_tab_len_hint", +"lj_gc_step_jit", +"lj_gc_barrieruv", +"lj_mem_newgco", +"lj_prng_u64d", +"lj_vm_modi", +"log10", +"exp", +"sin", +"cos", +"tan", +"asin", +"acos", +"atan", +"sinh", +"cosh", +"tanh", +"fputc", +"fwrite", +"fflush", +"lj_vm_floor", +"lj_vm_ceil", +"lj_vm_trunc", +"sqrt", +"log", +"lj_vm_log2", +"pow", +"atan2", +"ldexp", +"lj_vm_tobit", +"softfp_add", +"softfp_sub", +"softfp_mul", +"softfp_div", +"softfp_cmp", +"softfp_i2d", +"softfp_d2i", +"lj_vm_sfmin", +"lj_vm_sfmax", +"lj_vm_tointg", +"softfp_ui2d", +"softfp_f2d", +"softfp_d2ui", +"softfp_d2f", +"softfp_i2f", +"softfp_ui2f", +"softfp_f2i", +"softfp_f2ui", +"fp64_l2d", +"fp64_ul2d", +"fp64_l2f", +"fp64_ul2f", +"fp64_d2l", +"fp64_d2ul", +"fp64_f2l", +"fp64_f2ul", +"lj_carith_divi64", +"lj_carith_divu64", +"lj_carith_modi64", +"lj_carith_modu64", +"lj_carith_powi64", +"lj_carith_powu64", +"lj_cdata_newv", +"lj_cdata_setfin", +"strlen", +"memcpy", +"memset", +"lj_vm_errno", +"lj_carith_mul64", +"lj_carith_shl64", +"lj_carith_shr64", +"lj_carith_sar64", +"lj_carith_rol64", +"lj_carith_ror64", +}, + +traceerr = { +[0]="error thrown or hook called during recording", +"trace too short", +"trace too long", +"trace too deep", +"too many snapshots", +"blacklisted", +"retry recording", +"NYI: bytecode %d", +"leaving loop in root trace", +"inner loop in root trace", +"loop unroll limit reached", +"bad argument type", +"JIT compilation disabled for function", +"call unroll limit reached", +"down-recursion, restarting", +"NYI: unsupported variant of FastFunc %s", +"NYI: return to lower frame", +"store with nil or NaN key", +"missing metamethod", +"looping index lookup", +"NYI: mixed sparse/dense table", +"symbol not in cache", +"NYI: unsupported C type conversion", +"NYI: unsupported C function type", +"guard would always fail", +"too many PHIs", +"persistent type instability", +"failed to allocate mcode memory", +"machine code too long", +"hit mcode limit (retrying)", +"too many spill slots", +"inconsistent register allocation", +"NYI: cannot assemble IR instruction %d", +"NYI: PHI shuffling too complex", +"NYI: register coalescing too complex", +}, + +ffnames = { +[0]="Lua", +"C", +"assert", +"type", +"next", +"pairs", +"ipairs_aux", +"ipairs", +"getmetatable", +"setmetatable", +"getfenv", +"setfenv", +"rawget", +"rawset", +"rawequal", +"unpack", +"select", +"tonumber", +"tostring", +"error", +"pcall", +"xpcall", +"loadfile", +"load", +"loadstring", +"dofile", +"gcinfo", +"collectgarbage", +"newproxy", +"print", +"coroutine.status", +"coroutine.running", +"coroutine.isyieldable", +"coroutine.create", +"coroutine.yield", +"coroutine.resume", +"coroutine.wrap_aux", +"coroutine.wrap", +"math.abs", +"math.floor", +"math.ceil", +"math.sqrt", +"math.log10", +"math.exp", +"math.sin", +"math.cos", +"math.tan", +"math.asin", +"math.acos", +"math.atan", +"math.sinh", +"math.cosh", +"math.tanh", +"math.frexp", +"math.modf", +"math.log", +"math.atan2", +"math.pow", +"math.fmod", +"math.ldexp", +"math.min", +"math.max", +"math.random", +"math.randomseed", +"bit.tobit", +"bit.bnot", +"bit.bswap", +"bit.lshift", +"bit.rshift", +"bit.arshift", +"bit.rol", +"bit.ror", +"bit.band", +"bit.bor", +"bit.bxor", +"bit.tohex", +"string.byte", +"string.char", +"string.sub", +"string.rep", +"string.reverse", +"string.lower", +"string.upper", +"string.dump", +"string.find", +"string.match", +"string.gmatch_aux", +"string.gmatch", +"string.gsub", +"string.format", +"table.maxn", +"table.insert", +"table.concat", +"table.sort", +"table.new", +"table.clear", +"io.method.close", +"io.method.read", +"io.method.write", +"io.method.flush", +"io.method.seek", +"io.method.setvbuf", +"io.method.lines", +"io.method.__gc", +"io.method.__tostring", +"io.open", +"io.popen", +"io.tmpfile", +"io.close", +"io.read", +"io.write", +"io.flush", +"io.input", +"io.output", +"io.lines", +"io.type", +"os.execute", +"os.remove", +"os.rename", +"os.tmpname", +"os.getenv", +"os.exit", +"os.clock", +"os.date", +"os.time", +"os.difftime", +"os.setlocale", +"debug.getregistry", +"debug.getmetatable", +"debug.setmetatable", +"debug.getfenv", +"debug.setfenv", +"debug.getinfo", +"debug.getlocal", +"debug.setlocal", +"debug.getupvalue", +"debug.setupvalue", +"debug.upvalueid", +"debug.upvaluejoin", +"debug.sethook", +"debug.gethook", +"debug.debug", +"debug.traceback", +"jit.on", +"jit.off", +"jit.flush", +"jit.status", +"jit.security", +"jit.attach", +"jit.util.funcinfo", +"jit.util.funcbc", +"jit.util.funck", +"jit.util.funcuvname", +"jit.util.traceinfo", +"jit.util.traceir", +"jit.util.tracek", +"jit.util.tracesnap", +"jit.util.tracemc", +"jit.util.traceexitstub", +"jit.util.ircalladdr", +"jit.opt.start", +"jit.profile.start", +"jit.profile.stop", +"jit.profile.dumpstack", +"ffi.meta.__index", +"ffi.meta.__newindex", +"ffi.meta.__eq", +"ffi.meta.__len", +"ffi.meta.__lt", +"ffi.meta.__le", +"ffi.meta.__concat", +"ffi.meta.__call", +"ffi.meta.__add", +"ffi.meta.__sub", +"ffi.meta.__mul", +"ffi.meta.__div", +"ffi.meta.__mod", +"ffi.meta.__pow", +"ffi.meta.__unm", +"ffi.meta.__tostring", +"ffi.meta.__pairs", +"ffi.meta.__ipairs", +"ffi.clib.__index", +"ffi.clib.__newindex", +"ffi.clib.__gc", +"ffi.callback.free", +"ffi.callback.set", +"ffi.cdef", +"ffi.new", +"ffi.cast", +"ffi.typeof", +"ffi.typeinfo", +"ffi.istype", +"ffi.sizeof", +"ffi.alignof", +"ffi.offsetof", +"ffi.errno", +"ffi.string", +"ffi.copy", +"ffi.fill", +"ffi.abi", +"ffi.metatype", +"ffi.gc", +"ffi.load", +"buffer.method.free", +"buffer.method.reset", +"buffer.method.skip", +"buffer.method.set", +"buffer.method.put", +"buffer.method.putf", +"buffer.method.get", +"buffer.method.putcdata", +"buffer.method.reserve", +"buffer.method.commit", +"buffer.method.ref", +"buffer.method.encode", +"buffer.method.decode", +"buffer.method.__gc", +"buffer.method.__tostring", +"buffer.method.__len", +"buffer.new", +"buffer.encode", +"buffer.decode", +}, + +} + diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/zone.lua b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/zone.lua index 1308cb74..55dc76d3 100644 --- a/love/src/jni/LuaJIT-2.1/android/x86_64/jit/zone.lua +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/jit/zone.lua @@ -1,7 +1,7 @@ ---------------------------------------------------------------------------- -- LuaJIT profiler zones. -- --- Copyright (C) 2005-2022 Mike Pall. All rights reserved. +-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. -- Released under the MIT license. See Copyright Notice in luajit.h ---------------------------------------------------------------------------- -- diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/libluajit.a b/love/src/jni/LuaJIT-2.1/android/x86_64/libluajit.a index 0b74e736..4bab2182 100644 Binary files a/love/src/jni/LuaJIT-2.1/android/x86_64/libluajit.a and b/love/src/jni/LuaJIT-2.1/android/x86_64/libluajit.a differ diff --git a/love/src/jni/LuaJIT-2.1/android/x86_64/luajit.h b/love/src/jni/LuaJIT-2.1/android/x86_64/luajit.h new file mode 100644 index 00000000..94814d91 --- /dev/null +++ b/love/src/jni/LuaJIT-2.1/android/x86_64/luajit.h @@ -0,0 +1,79 @@ +/* +** LuaJIT -- a Just-In-Time Compiler for Lua. https://luajit.org/ +** +** Copyright (C) 2005-2023 Mike Pall. All rights reserved. +** +** Permission is hereby granted, free of charge, to any person obtaining +** a copy of this software and associated documentation files (the +** "Software"), to deal in the Software without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Software, and to +** permit persons to whom the Software is furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be +** included in all copies or substantial portions of the Software. +** +** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +** +** [ MIT license: https://www.opensource.org/licenses/mit-license.php ] +*/ + +#ifndef _LUAJIT_H +#define _LUAJIT_H + +#include "lua.h" + +#define LUAJIT_VERSION "LuaJIT 2.1.1700008891" +#define LUAJIT_VERSION_NUM 20199 /* Deprecated. */ +#define LUAJIT_VERSION_SYM luaJIT_version_2_1_1700008891 +#define LUAJIT_COPYRIGHT "Copyright (C) 2005-2023 Mike Pall" +#define LUAJIT_URL "https://luajit.org/" + +/* Modes for luaJIT_setmode. */ +#define LUAJIT_MODE_MASK 0x00ff + +enum { + LUAJIT_MODE_ENGINE, /* Set mode for whole JIT engine. */ + LUAJIT_MODE_DEBUG, /* Set debug mode (idx = level). */ + + LUAJIT_MODE_FUNC, /* Change mode for a function. */ + LUAJIT_MODE_ALLFUNC, /* Recurse into subroutine protos. */ + LUAJIT_MODE_ALLSUBFUNC, /* Change only the subroutines. */ + + LUAJIT_MODE_TRACE, /* Flush a compiled trace. */ + + LUAJIT_MODE_WRAPCFUNC = 0x10, /* Set wrapper mode for C function calls. */ + + LUAJIT_MODE_MAX +}; + +/* Flags or'ed in to the mode. */ +#define LUAJIT_MODE_OFF 0x0000 /* Turn feature off. */ +#define LUAJIT_MODE_ON 0x0100 /* Turn feature on. */ +#define LUAJIT_MODE_FLUSH 0x0200 /* Flush JIT-compiled code. */ + +/* LuaJIT public C API. */ + +/* Control the JIT engine. */ +LUA_API int luaJIT_setmode(lua_State *L, int idx, int mode); + +/* Low-overhead profiling API. */ +typedef void (*luaJIT_profile_callback)(void *data, lua_State *L, + int samples, int vmstate); +LUA_API void luaJIT_profile_start(lua_State *L, const char *mode, + luaJIT_profile_callback cb, void *data); +LUA_API void luaJIT_profile_stop(lua_State *L); +LUA_API const char *luaJIT_profile_dumpstack(lua_State *L, const char *fmt, + int depth, size_t *len); + +/* Enforce (dynamic) linker error for version mismatches. Call from main. */ +LUA_API void LUAJIT_VERSION_SYM(void); + +#endif