mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 14:25:44 +08:00
ce9414cb98
* AST queries at position where function name is will now return AstExprLocal * Lexer performance has been slightly improved * Fixed incorrect string singleton autocomplete suggestions (fixes #858) * Improved parsing error messages * Fixed crash on null pointer access in unification (fixes #1017) * Native code support is enabled by default and `native=1` (make)/`LUAU_NATIVE` (CMake)/`-DLUA_CUSTOM_EXECUTION` configuration is no longer required New typechecker: * New subtyping check can now handle generic functions and tables (including those that contain cycles) Native code generation: * Loops with non-numeric parameters are now handled by VM to streamline native code * Array size check can be optimized away in SETLIST * On failure, CodeGen::compile returns a reason * Fixed clobbering of non-volatile xmm registers on Windows
56 lines
1.6 KiB
C++
56 lines
1.6 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 "Luau/RegisterX64.h"
|
|
#include "UnwindBuilder.h"
|
|
|
|
#include <vector>
|
|
|
|
namespace Luau
|
|
{
|
|
namespace CodeGen
|
|
{
|
|
|
|
struct UnwindFunctionDwarf2
|
|
{
|
|
uint32_t beginOffset;
|
|
uint32_t endOffset;
|
|
uint32_t fdeEntryStartPos;
|
|
};
|
|
|
|
class UnwindBuilderDwarf2 : public UnwindBuilder
|
|
{
|
|
public:
|
|
void setBeginOffset(size_t beginOffset) override;
|
|
size_t getBeginOffset() const override;
|
|
|
|
void startInfo(Arch arch) override;
|
|
void startFunction() override;
|
|
void finishFunction(uint32_t beginOffset, uint32_t endOffset) override;
|
|
void finishInfo() override;
|
|
|
|
void prologueA64(uint32_t prologueSize, uint32_t stackSize, std::initializer_list<A64::RegisterA64> regs) override;
|
|
void prologueX64(uint32_t prologueSize, uint32_t stackSize, bool setupFrame, std::initializer_list<X64::RegisterX64> gpr,
|
|
const std::vector<X64::RegisterX64>& simd) override;
|
|
|
|
size_t getSize() const override;
|
|
size_t getFunctionCount() const override;
|
|
|
|
void finalize(char* target, size_t offset, void* funcAddress, size_t funcSize) const override;
|
|
|
|
private:
|
|
size_t beginOffset = 0;
|
|
|
|
std::vector<UnwindFunctionDwarf2> unwindFunctions;
|
|
|
|
static const unsigned kRawDataLimit = 1024;
|
|
uint8_t rawData[kRawDataLimit];
|
|
uint8_t* pos = rawData;
|
|
|
|
// We will remember the FDE location to write some of the fields like entry length, function start and size later
|
|
uint8_t* fdeEntryStart = nullptr;
|
|
};
|
|
|
|
} // namespace CodeGen
|
|
} // namespace Luau
|