2022-09-16 06:38:17 +08:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#pragma once
|
|
|
|
|
2023-05-06 05:52:49 +08:00
|
|
|
#include "Luau/RegisterA64.h"
|
2022-09-16 06:38:17 +08:00
|
|
|
#include "Luau/RegisterX64.h"
|
|
|
|
|
2023-05-06 05:52:49 +08:00
|
|
|
#include <initializer_list>
|
|
|
|
|
2022-09-16 06:38:17 +08:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
namespace Luau
|
|
|
|
{
|
|
|
|
namespace CodeGen
|
|
|
|
{
|
|
|
|
|
2023-04-15 02:06:22 +08:00
|
|
|
// This value is used in 'finishFunction' to mark the function that spans to the end of the whole code block
|
|
|
|
static uint32_t kFullBlockFuncton = ~0u;
|
|
|
|
|
2022-09-16 06:38:17 +08:00
|
|
|
class UnwindBuilder
|
|
|
|
{
|
|
|
|
public:
|
2023-05-06 05:52:49 +08:00
|
|
|
enum Arch
|
|
|
|
{
|
|
|
|
X64,
|
|
|
|
A64
|
|
|
|
};
|
|
|
|
|
2022-10-07 08:23:29 +08:00
|
|
|
virtual ~UnwindBuilder() = default;
|
|
|
|
|
|
|
|
virtual void setBeginOffset(size_t beginOffset) = 0;
|
|
|
|
virtual size_t getBeginOffset() const = 0;
|
2022-09-16 06:38:17 +08:00
|
|
|
|
2023-05-06 05:52:49 +08:00
|
|
|
virtual void startInfo(Arch arch) = 0;
|
2023-04-15 02:06:22 +08:00
|
|
|
virtual void startFunction() = 0;
|
|
|
|
virtual void finishFunction(uint32_t beginOffset, uint32_t endOffset) = 0;
|
|
|
|
virtual void finishInfo() = 0;
|
2022-09-16 06:38:17 +08:00
|
|
|
|
2023-05-06 05:52:49 +08:00
|
|
|
// A64-specific; prologue must look like this:
|
|
|
|
// sub sp, sp, stackSize
|
|
|
|
// store sequence that saves regs to [sp..sp+regs.size*8) in the order specified in regs; regs should start with x29, x30 (fp, lr)
|
|
|
|
// mov x29, sp
|
|
|
|
virtual void prologueA64(uint32_t prologueSize, uint32_t stackSize, std::initializer_list<A64::RegisterA64> regs) = 0;
|
|
|
|
|
|
|
|
// X64-specific; prologue must look like this:
|
|
|
|
// optional, indicated by setupFrame:
|
|
|
|
// push rbp
|
|
|
|
// mov rbp, rsp
|
|
|
|
// push reg in the order specified in regs
|
|
|
|
// sub rsp, stackSize
|
|
|
|
virtual void prologueX64(uint32_t prologueSize, uint32_t stackSize, bool setupFrame, std::initializer_list<X64::RegisterX64> regs) = 0;
|
|
|
|
|
2022-09-16 06:38:17 +08:00
|
|
|
virtual size_t getSize() const = 0;
|
2023-04-15 02:06:22 +08:00
|
|
|
virtual size_t getFunctionCount() const = 0;
|
2022-09-16 06:38:17 +08:00
|
|
|
|
|
|
|
// This will place the unwinding data at the target address and might update values of some fields
|
2023-04-15 02:06:22 +08:00
|
|
|
virtual void finalize(char* target, size_t offset, void* funcAddress, size_t funcSize) const = 0;
|
2022-09-16 06:38:17 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace CodeGen
|
|
|
|
} // namespace Luau
|