mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 11:20:54 +01:00
Type checker/autocomplete: * `Luau::autocomplete` no longer performs typechecking internally, make sure to run `Frontend::check` before performing autocomplete requests * Autocomplete string suggestions without "" are now only suggested inside the "" * Autocomplete suggestions now include `function (anonymous autofilled)` key with a full suggestion for the function expression (with arguments included) stored in `AutocompleteEntry::insertText` * `AutocompleteEntry::indexedWithSelf` is provided for function call suggestions made with `:` * Cyclic modules now see each other type exports as `any` to prevent memory use-after-free (similar to module return type) Runtime: * Updated inline/loop unroll cost model to better handle assignments (Fixes https://github.com/Roblox/luau/issues/978) * `math.noise` speed was improved by ~30% * `table.concat` speed was improved by ~5-7% * `tonumber` and `tostring` now have fastcall paths that execute ~1.5x and ~2.5x faster respectively (fixes #777) * Fixed crash in `luaL_typename` when index refers to a non-existing value * Fixed potential out of memory scenario when using `string.sub` or `string.char` in a loop * Fixed behavior of some fastcall builtins when called without arguments under -O2 to match original functions * Support for native code execution in VM is now enabled by default (note: native code still has to be generated explicitly) * `Codegen::compile` now accepts `CodeGen_OnlyNativeModules` flag. When set, only modules that have a `--!native` hot-comment at the top will be compiled to native code In our new typechecker: * Generic type packs are no longer considered to be variadic during unification * Timeout and cancellation now works in new solver * Fixed false positive errors around 'table' and 'function' type refinements * Table literals now use covariant unification rules. This is sound since literal has no type specified and has no aliases * Fixed issues with blocked types escaping the constraint solver * Fixed more places where error messages that should've been suppressed were still reported * Fixed errors when iterating over a top table type In our native code generation (jit): * 'DebugLuauAbortingChecks' flag is now supported on A64 * LOP_NEWCLOSURE has been translated to IR
111 lines
3.6 KiB
C++
111 lines
3.6 KiB
C++
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
#include "NativeState.h"
|
|
|
|
#include "Luau/UnwindBuilder.h"
|
|
|
|
#include "CodeGenUtils.h"
|
|
|
|
#include "lbuiltins.h"
|
|
#include "lgc.h"
|
|
#include "ltable.h"
|
|
#include "lfunc.h"
|
|
#include "lvm.h"
|
|
|
|
#include <math.h>
|
|
#include <string.h>
|
|
|
|
namespace Luau
|
|
{
|
|
namespace CodeGen
|
|
{
|
|
|
|
constexpr unsigned kBlockSize = 4 * 1024 * 1024;
|
|
constexpr unsigned kMaxTotalSize = 256 * 1024 * 1024;
|
|
|
|
NativeState::NativeState()
|
|
: codeAllocator(kBlockSize, kMaxTotalSize)
|
|
{
|
|
}
|
|
|
|
NativeState::~NativeState() = default;
|
|
|
|
void initFunctions(NativeState& data)
|
|
{
|
|
static_assert(sizeof(data.context.luauF_table) == sizeof(luauF_table), "fastcall tables are not of the same length");
|
|
memcpy(data.context.luauF_table, luauF_table, sizeof(luauF_table));
|
|
|
|
data.context.luaV_lessthan = luaV_lessthan;
|
|
data.context.luaV_lessequal = luaV_lessequal;
|
|
data.context.luaV_equalval = luaV_equalval;
|
|
data.context.luaV_doarith = luaV_doarith;
|
|
data.context.luaV_dolen = luaV_dolen;
|
|
data.context.luaV_prepareFORN = luaV_prepareFORN;
|
|
data.context.luaV_gettable = luaV_gettable;
|
|
data.context.luaV_settable = luaV_settable;
|
|
data.context.luaV_getimport = luaV_getimport;
|
|
data.context.luaV_concat = luaV_concat;
|
|
|
|
data.context.luaH_getn = luaH_getn;
|
|
data.context.luaH_new = luaH_new;
|
|
data.context.luaH_clone = luaH_clone;
|
|
data.context.luaH_resizearray = luaH_resizearray;
|
|
|
|
data.context.luaC_barriertable = luaC_barriertable;
|
|
data.context.luaC_barrierf = luaC_barrierf;
|
|
data.context.luaC_barrierback = luaC_barrierback;
|
|
data.context.luaC_step = luaC_step;
|
|
|
|
data.context.luaF_close = luaF_close;
|
|
data.context.luaF_findupval = luaF_findupval;
|
|
data.context.luaF_newLclosure = luaF_newLclosure;
|
|
|
|
data.context.luaT_gettm = luaT_gettm;
|
|
data.context.luaT_objtypenamestr = luaT_objtypenamestr;
|
|
|
|
data.context.libm_exp = exp;
|
|
data.context.libm_pow = pow;
|
|
data.context.libm_fmod = fmod;
|
|
data.context.libm_log = log;
|
|
data.context.libm_log2 = log2;
|
|
data.context.libm_log10 = log10;
|
|
data.context.libm_ldexp = ldexp;
|
|
data.context.libm_round = round;
|
|
data.context.libm_frexp = frexp;
|
|
data.context.libm_modf = modf;
|
|
|
|
data.context.libm_asin = asin;
|
|
data.context.libm_sin = sin;
|
|
data.context.libm_sinh = sinh;
|
|
data.context.libm_acos = acos;
|
|
data.context.libm_cos = cos;
|
|
data.context.libm_cosh = cosh;
|
|
data.context.libm_atan = atan;
|
|
data.context.libm_atan2 = atan2;
|
|
data.context.libm_tan = tan;
|
|
data.context.libm_tanh = tanh;
|
|
|
|
data.context.forgLoopTableIter = forgLoopTableIter;
|
|
data.context.forgLoopNodeIter = forgLoopNodeIter;
|
|
data.context.forgLoopNonTableFallback = forgLoopNonTableFallback;
|
|
data.context.forgPrepXnextFallback = forgPrepXnextFallback;
|
|
data.context.callProlog = callProlog;
|
|
data.context.callEpilogC = callEpilogC;
|
|
|
|
data.context.callFallback = callFallback;
|
|
|
|
data.context.executeGETGLOBAL = executeGETGLOBAL;
|
|
data.context.executeSETGLOBAL = executeSETGLOBAL;
|
|
data.context.executeGETTABLEKS = executeGETTABLEKS;
|
|
data.context.executeSETTABLEKS = executeSETTABLEKS;
|
|
|
|
data.context.executeNEWCLOSURE = executeNEWCLOSURE;
|
|
data.context.executeNAMECALL = executeNAMECALL;
|
|
data.context.executeFORGPREP = executeFORGPREP;
|
|
data.context.executeGETVARARGS = executeGETVARARGS;
|
|
data.context.executeDUPCLOSURE = executeDUPCLOSURE;
|
|
data.context.executePREPVARARGS = executePREPVARARGS;
|
|
data.context.executeSETLIST = executeSETLIST;
|
|
}
|
|
|
|
} // namespace CodeGen
|
|
} // namespace Luau
|