2022-10-15 03:48:41 +08:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
struct lua_State;
|
|
|
|
|
|
|
|
namespace Luau
|
|
|
|
{
|
|
|
|
namespace CodeGen
|
|
|
|
{
|
|
|
|
|
|
|
|
bool isSupported();
|
|
|
|
|
|
|
|
void create(lua_State* L);
|
|
|
|
|
|
|
|
// Builds target function and all inner functions
|
|
|
|
void compile(lua_State* L, int idx);
|
|
|
|
|
2022-10-28 18:37:29 +08:00
|
|
|
using annotatorFn = void (*)(void* context, std::string& result, int fid, int instpos);
|
2022-10-22 01:54:01 +08:00
|
|
|
|
|
|
|
struct AssemblyOptions
|
|
|
|
{
|
|
|
|
bool outputBinary = false;
|
2023-01-28 06:28:31 +08:00
|
|
|
|
|
|
|
bool includeAssembly = false;
|
|
|
|
bool includeIr = false;
|
|
|
|
bool includeOutlinedCode = false;
|
2022-10-22 01:54:01 +08:00
|
|
|
|
|
|
|
// Optional annotator function can be provided to describe each instruction, it takes function id and sequential instruction id
|
|
|
|
annotatorFn annotator = nullptr;
|
|
|
|
void* annotatorContext = nullptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Generates assembly for target function and all inner functions
|
|
|
|
std::string getAssembly(lua_State* L, int idx, AssemblyOptions options = {});
|
2022-10-15 03:48:41 +08:00
|
|
|
|
|
|
|
} // namespace CodeGen
|
|
|
|
} // namespace Luau
|