luau/CodeGen/include/Luau/CodeGen.h

99 lines
2.7 KiB
C
Raw Normal View History

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-09-16 00:27:45 +08:00
#include <stddef.h>
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,
2023-10-07 01:31:16 +08:00
// Run native codegen for functions that the compiler considers not profitable
CodeGen_ColdFunctions = 1 << 1,
2023-07-28 19:37:00 +08:00
};
2023-08-25 23:25:09 +08: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 20:55:30 +08: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-14 06:59:53 +08:00
bool isSupported();
2023-08-11 20:55:30 +08:00
void create(lua_State* L, AllocationCallback* allocationCallback, void* allocationCallbackContext);
2022-10-14 06:59:53 +08:00
void create(lua_State* L);
// Builds target function and all inner functions
2023-08-25 23:25:09 +08:00
CodeGenCompilationResult compile(lua_State* L, int idx, unsigned int flags = 0, CompilationStats* stats = nullptr);
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;
};
2023-09-16 00:27:45 +08:00
struct LoweringStats
{
int spillsToSlot = 0;
int spillsToRestore = 0;
unsigned maxSpillSlotsUsed = 0;
int regAllocErrors = 0;
int loweringErrors = 0;
};
2022-10-22 01:33:43 +08:00
// Generates assembly for target function and all inner functions
2023-09-16 00:27:45 +08:00
std::string getAssembly(lua_State* L, int idx, AssemblyOptions options = {}, LoweringStats* stats = nullptr);
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