luau/CodeGen/include/Luau/CodeGen.h

97 lines
2.5 KiB
C
Raw Normal View History

2022-10-13 23:59:53 +01: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-09-15 17:27:45 +01:00
#include <stddef.h>
2023-05-12 13:15:01 +01:00
#include <stdint.h>
2022-10-13 23:59:53 +01:00
struct lua_State;
namespace Luau
{
namespace CodeGen
{
2023-07-28 12:37:00 +01:00
enum CodeGenFlags
{
// Only run native codegen for modules that have been marked with --!native
CodeGen_OnlyNativeModules = 1 << 0,
};
2023-08-25 16:25:09 +01:00
enum class CodeGenCompilationResult
{
Success, // Successfully generated code for at least one function
NothingToCompile, // There were no new functions to compile
CodeGenNotInitialized, // Native codegen system is not initialized
CodeGenFailed, // Native codegen failed due to an internal compiler error
AllocationFailed, // Native codegen failed due to an allocation error
};
2023-08-11 13:55:30 +01:00
struct CompilationStats
{
size_t bytecodeSizeBytes = 0;
size_t nativeCodeSizeBytes = 0;
size_t nativeDataSizeBytes = 0;
size_t nativeMetadataSizeBytes = 0;
uint32_t functionsCompiled = 0;
};
using AllocationCallback = void(void* context, void* oldPointer, size_t oldSize, void* newPointer, size_t newSize);
2022-10-13 23:59:53 +01:00
bool isSupported();
2023-08-11 13:55:30 +01:00
void create(lua_State* L, AllocationCallback* allocationCallback, void* allocationCallbackContext);
2022-10-13 23:59:53 +01:00
void create(lua_State* L);
// Builds target function and all inner functions
2023-08-25 16:25:09 +01:00
CodeGenCompilationResult compile(lua_State* L, int idx, unsigned int flags = 0, CompilationStats* stats = nullptr);
2022-10-13 23:59:53 +01:00
2023-05-12 13:15:01 +01:00
using AnnotatorFn = void (*)(void* context, std::string& result, int fid, int instpos);
2022-10-21 18:33:43 +01:00
struct AssemblyOptions
{
2023-06-24 06:33:44 +01:00
enum Target
{
Host,
A64,
A64_NoFeatures,
X64_Windows,
X64_SystemV,
};
Target target = Host;
2022-10-21 18:33:43 +01:00
bool outputBinary = false;
2023-01-27 21:28:45 +00:00
bool includeAssembly = false;
bool includeIr = false;
bool includeOutlinedCode = false;
2022-10-21 18:33:43 +01:00
// Optional annotator function can be provided to describe each instruction, it takes function id and sequential instruction id
2023-05-12 13:15:01 +01:00
AnnotatorFn annotator = nullptr;
2022-10-21 18:33:43 +01:00
void* annotatorContext = nullptr;
};
2023-09-15 17:27:45 +01:00
struct LoweringStats
{
int spillsToSlot = 0;
int spillsToRestore = 0;
unsigned maxSpillSlotsUsed = 0;
int regAllocErrors = 0;
int loweringErrors = 0;
};
2022-10-21 18:33:43 +01:00
// Generates assembly for target function and all inner functions
2023-09-15 17:27:45 +01:00
std::string getAssembly(lua_State* L, int idx, AssemblyOptions options = {}, LoweringStats* stats = nullptr);
2022-10-13 23:59:53 +01:00
2023-05-12 13:15:01 +01:00
using PerfLogFn = void (*)(void* context, uintptr_t addr, unsigned size, const char* symbol);
void setPerfLog(void* context, PerfLogFn logFn);
2022-10-13 23:59:53 +01:00
} // namespace CodeGen
} // namespace Luau