2022-10-14 06:59:53 +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>
|
|
|
|
|
2023-05-12 20:15:01 +08:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2022-10-14 06:59:53 +08:00
|
|
|
struct lua_State;
|
|
|
|
|
|
|
|
namespace Luau
|
|
|
|
{
|
|
|
|
namespace CodeGen
|
|
|
|
{
|
|
|
|
|
2023-07-28 19:37:00 +08:00
|
|
|
enum CodeGenFlags
|
|
|
|
{
|
|
|
|
// Only run native codegen for modules that have been marked with --!native
|
|
|
|
CodeGen_OnlyNativeModules = 1 << 0,
|
|
|
|
};
|
|
|
|
|
2022-10-14 06:59:53 +08:00
|
|
|
bool isSupported();
|
|
|
|
|
|
|
|
void create(lua_State* L);
|
|
|
|
|
|
|
|
// Builds target function and all inner functions
|
2023-07-28 19:37:00 +08:00
|
|
|
void compile(lua_State* L, int idx, unsigned int flags = 0);
|
2022-10-14 06:59:53 +08:00
|
|
|
|
2023-05-12 20:15:01 +08:00
|
|
|
using AnnotatorFn = void (*)(void* context, std::string& result, int fid, int instpos);
|
2022-10-22 01:33:43 +08:00
|
|
|
|
|
|
|
struct AssemblyOptions
|
|
|
|
{
|
2023-06-24 13:33:44 +08:00
|
|
|
enum Target
|
|
|
|
{
|
|
|
|
Host,
|
|
|
|
A64,
|
|
|
|
A64_NoFeatures,
|
|
|
|
X64_Windows,
|
|
|
|
X64_SystemV,
|
|
|
|
};
|
|
|
|
|
|
|
|
Target target = Host;
|
|
|
|
|
2022-10-22 01:33:43 +08:00
|
|
|
bool outputBinary = false;
|
2023-01-28 05:28:45 +08:00
|
|
|
|
|
|
|
bool includeAssembly = false;
|
|
|
|
bool includeIr = false;
|
|
|
|
bool includeOutlinedCode = false;
|
2022-10-22 01:33:43 +08:00
|
|
|
|
|
|
|
// Optional annotator function can be provided to describe each instruction, it takes function id and sequential instruction id
|
2023-05-12 20:15:01 +08:00
|
|
|
AnnotatorFn annotator = nullptr;
|
2022-10-22 01:33:43 +08:00
|
|
|
void* annotatorContext = nullptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Generates assembly for target function and all inner functions
|
|
|
|
std::string getAssembly(lua_State* L, int idx, AssemblyOptions options = {});
|
2022-10-14 06:59:53 +08:00
|
|
|
|
2023-05-12 20:15:01 +08:00
|
|
|
using PerfLogFn = void (*)(void* context, uintptr_t addr, unsigned size, const char* symbol);
|
|
|
|
|
|
|
|
void setPerfLog(void* context, PerfLogFn logFn);
|
|
|
|
|
2022-10-14 06:59:53 +08:00
|
|
|
} // namespace CodeGen
|
|
|
|
} // namespace Luau
|