mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 03:10:54 +01:00
* Add a missing recursion limiter in `Unifier::tryUnifyTables`. This was causing a crash in certain situations. * Luau heap graph enumeration improvements: * Weak references are not reported * Added tag as a fallback name of non-string table links * Included top Luau function information in thread name to understand where thread might be suspended * Constant folding for `math.pi` and `math.huge` at -O2 * Optimize `string.format` and `%*` * This change makes string interpolation 1.5x-2x faster depending on the number and type of formatted components, assuming a few are using primitive types, and reduces associated GC pressure. New solver * Initial work toward tracking the upper and lower bounds of types more accurately. JIT * Add IrCmd::CHECK_TRUTHY for improved assert fast-calls * Do not compute type map for modules without types * Capture metatable+readonly state for NEW_TABLE IR instructions * Replace JUMP_CMP_ANY with CMP_ANY and existing JUMP_EQ_INT * Add support for exits to VM with reentry lock in VmExit
49 lines
1.1 KiB
C++
49 lines
1.1 KiB
C++
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
#pragma once
|
|
|
|
#include "ValueTracking.h"
|
|
|
|
namespace Luau
|
|
{
|
|
namespace Compile
|
|
{
|
|
|
|
struct Constant
|
|
{
|
|
enum Type
|
|
{
|
|
Type_Unknown,
|
|
Type_Nil,
|
|
Type_Boolean,
|
|
Type_Number,
|
|
Type_String,
|
|
};
|
|
|
|
Type type = Type_Unknown;
|
|
unsigned int stringLength = 0;
|
|
|
|
union
|
|
{
|
|
bool valueBoolean;
|
|
double valueNumber;
|
|
const char* valueString = nullptr; // length stored in stringLength
|
|
};
|
|
|
|
bool isTruthful() const
|
|
{
|
|
LUAU_ASSERT(type != Type_Unknown);
|
|
return type != Type_Nil && !(type == Type_Boolean && valueBoolean == false);
|
|
}
|
|
|
|
AstArray<const char> getString() const
|
|
{
|
|
LUAU_ASSERT(type == Type_String);
|
|
return {valueString, stringLength};
|
|
}
|
|
};
|
|
|
|
void foldConstants(DenseHashMap<AstExpr*, Constant>& constants, DenseHashMap<AstLocal*, Variable>& variables,
|
|
DenseHashMap<AstLocal*, Constant>& locals, const DenseHashMap<AstExprCall*, int>* builtins, bool foldMathK, AstNode* root);
|
|
|
|
} // namespace Compile
|
|
} // namespace Luau
|