mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 06:15:44 +08:00
a251bc68a2
Some checks failed
benchmark / callgrind (map[branch:main name:luau-lang/benchmark-data], ubuntu-22.04) (push) Has been cancelled
build / ${{matrix.os.name}} (map[name:macos version:macos-latest]) (push) Has been cancelled
build / ${{matrix.os.name}} (map[name:macos-arm version:macos-14]) (push) Has been cancelled
build / ${{matrix.os.name}} (map[name:ubuntu version:ubuntu-latest]) (push) Has been cancelled
build / windows (Win32) (push) Has been cancelled
build / windows (x64) (push) Has been cancelled
build / coverage (push) Has been cancelled
build / web (push) Has been cancelled
release / ${{matrix.os.name}} (map[name:macos version:macos-latest]) (push) Has been cancelled
release / ${{matrix.os.name}} (map[name:ubuntu version:ubuntu-20.04]) (push) Has been cancelled
release / ${{matrix.os.name}} (map[name:windows version:windows-latest]) (push) Has been cancelled
release / web (push) Has been cancelled
* New `vector` library! See https://rfcs.luau.org/vector-library.html for details * Replace the use of non-portable `strnlen` with `memchr`. `strnlen` is not part of any C or C++ standard. * Introduce `lua_newuserdatataggedwithmetatable` for faster tagged userdata creation of userdata with metatables registered with `lua_setuserdatametatable` Old Solver * It used to be the case that a module's result type would unconditionally be inferred to be `any` if it imported any module that participates in any import cycle. This is now fixed. New Solver * Improve inference of `table.freeze`: We now infer read-only properties on tables after they have been frozen. * We now correctly flag cases where `string.format` is called with 0 arguments. * Fix a bug in user-defined type functions where table properties could be lost if the table had a metatable * Reset the random number seed for each evaluation of a type function * We now retry subtyping arguments if it failed due to hidden variadics. --------- Co-authored-by: Aaron Weiss <aaronweiss@roblox.com> Co-authored-by: Alexander McCord <amccord@roblox.com> Co-authored-by: Vighnesh <vvijay@roblox.com> Co-authored-by: Aviral Goel <agoel@roblox.com> Co-authored-by: David Cope <dcope@roblox.com> Co-authored-by: Lily Brown <lbrown@roblox.com> Co-authored-by: Vyacheslav Egorov <vegorov@roblox.com> Co-authored-by: Junseo Yoo <jyoo@roblox.com>
151 lines
3.9 KiB
C++
151 lines
3.9 KiB
C++
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
#pragma once
|
|
|
|
// Compiler codegen control macros
|
|
#ifdef _MSC_VER
|
|
#define LUAU_NORETURN __declspec(noreturn)
|
|
#define LUAU_NOINLINE __declspec(noinline)
|
|
#define LUAU_FORCEINLINE __forceinline
|
|
#define LUAU_LIKELY(x) x
|
|
#define LUAU_UNLIKELY(x) x
|
|
#define LUAU_UNREACHABLE() __assume(false)
|
|
#define LUAU_DEBUGBREAK() __debugbreak()
|
|
#else
|
|
#define LUAU_NORETURN __attribute__((__noreturn__))
|
|
#define LUAU_NOINLINE __attribute__((noinline))
|
|
#define LUAU_FORCEINLINE inline __attribute__((always_inline))
|
|
#define LUAU_LIKELY(x) __builtin_expect(x, 1)
|
|
#define LUAU_UNLIKELY(x) __builtin_expect(x, 0)
|
|
#define LUAU_UNREACHABLE() __builtin_unreachable()
|
|
#define LUAU_DEBUGBREAK() __builtin_trap()
|
|
#endif
|
|
|
|
// LUAU_FALLTHROUGH is a C++11-compatible alternative to [[fallthrough]] for use in the VM library
|
|
#if defined(__clang__) && defined(__has_warning)
|
|
#if __has_feature(cxx_attributes) && __has_warning("-Wimplicit-fallthrough")
|
|
#define LUAU_FALLTHROUGH [[clang::fallthrough]]
|
|
#else
|
|
#define LUAU_FALLTHROUGH
|
|
#endif
|
|
#elif defined(__GNUC__) && __GNUC__ >= 7
|
|
#define LUAU_FALLTHROUGH [[gnu::fallthrough]]
|
|
#else
|
|
#define LUAU_FALLTHROUGH
|
|
#endif
|
|
|
|
#if defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
|
#define LUAU_BIG_ENDIAN
|
|
#endif
|
|
|
|
namespace Luau
|
|
{
|
|
|
|
using AssertHandler = int (*)(const char* expression, const char* file, int line, const char* function);
|
|
|
|
inline AssertHandler& assertHandler()
|
|
{
|
|
static AssertHandler handler = nullptr;
|
|
return handler;
|
|
}
|
|
|
|
// We want 'inline' to correctly link this function declared in the header
|
|
// But we also want to prevent compiler from inlining this function when optimization and assertions are enabled together
|
|
// Reason for that is that compilation times can increase significantly in such a configuration
|
|
LUAU_NOINLINE inline int assertCallHandler(const char* expression, const char* file, int line, const char* function)
|
|
{
|
|
if (AssertHandler handler = assertHandler())
|
|
return handler(expression, file, line, function);
|
|
|
|
return 1;
|
|
}
|
|
|
|
} // namespace Luau
|
|
|
|
#if !defined(NDEBUG) || defined(LUAU_ENABLE_ASSERT)
|
|
#define LUAU_ASSERT(expr) ((void)(!!(expr) || (Luau::assertCallHandler(#expr, __FILE__, __LINE__, __FUNCTION__) && (LUAU_DEBUGBREAK(), 0))))
|
|
#define LUAU_ASSERTENABLED
|
|
#else
|
|
#define LUAU_ASSERT(expr) (void)sizeof(!!(expr))
|
|
#endif
|
|
|
|
namespace Luau
|
|
{
|
|
|
|
template<typename T>
|
|
struct FValue
|
|
{
|
|
static FValue* list;
|
|
|
|
T value;
|
|
bool dynamic;
|
|
const char* name;
|
|
FValue* next;
|
|
|
|
FValue(const char* name, T def, bool dynamic)
|
|
: value(def)
|
|
, dynamic(dynamic)
|
|
, name(name)
|
|
, next(list)
|
|
{
|
|
list = this;
|
|
}
|
|
|
|
LUAU_FORCEINLINE operator T() const
|
|
{
|
|
return value;
|
|
}
|
|
};
|
|
|
|
template<typename T>
|
|
FValue<T>* FValue<T>::list = nullptr;
|
|
|
|
} // namespace Luau
|
|
|
|
#define LUAU_FASTFLAG(flag) \
|
|
namespace FFlag \
|
|
{ \
|
|
extern Luau::FValue<bool> flag; \
|
|
}
|
|
#define LUAU_FASTFLAGVARIABLE(flag) \
|
|
namespace FFlag \
|
|
{ \
|
|
Luau::FValue<bool> flag(#flag, false, false); \
|
|
}
|
|
#define LUAU_FASTINT(flag) \
|
|
namespace FInt \
|
|
{ \
|
|
extern Luau::FValue<int> flag; \
|
|
}
|
|
#define LUAU_FASTINTVARIABLE(flag, def) \
|
|
namespace FInt \
|
|
{ \
|
|
Luau::FValue<int> flag(#flag, def, false); \
|
|
}
|
|
|
|
#define LUAU_DYNAMIC_FASTFLAG(flag) \
|
|
namespace DFFlag \
|
|
{ \
|
|
extern Luau::FValue<bool> flag; \
|
|
}
|
|
#define LUAU_DYNAMIC_FASTFLAGVARIABLE(flag, def) \
|
|
namespace DFFlag \
|
|
{ \
|
|
Luau::FValue<bool> flag(#flag, def, true); \
|
|
}
|
|
#define LUAU_DYNAMIC_FASTINT(flag) \
|
|
namespace DFInt \
|
|
{ \
|
|
extern Luau::FValue<int> flag; \
|
|
}
|
|
#define LUAU_DYNAMIC_FASTINTVARIABLE(flag, def) \
|
|
namespace DFInt \
|
|
{ \
|
|
Luau::FValue<int> flag(#flag, def, true); \
|
|
}
|
|
|
|
#if defined(__GNUC__)
|
|
#define LUAU_PRINTF_ATTR(fmt, arg) __attribute__((format(printf, fmt, arg)))
|
|
#else
|
|
#define LUAU_PRINTF_ATTR(fmt, arg)
|
|
#endif
|