2022-10-14 12:48:41 -07:00
|
|
|
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Luau
|
|
|
|
{
|
|
|
|
namespace CodeGen
|
|
|
|
{
|
|
|
|
|
2024-03-30 16:14:44 -07:00
|
|
|
class BaseCodeGenContext;
|
2023-03-17 21:20:37 +02:00
|
|
|
struct ModuleHelpers;
|
2022-10-14 12:48:41 -07:00
|
|
|
|
2023-03-03 22:21:14 +02:00
|
|
|
namespace X64
|
2022-10-14 12:48:41 -07:00
|
|
|
{
|
|
|
|
|
2023-03-17 21:20:37 +02:00
|
|
|
class AssemblyBuilderX64;
|
|
|
|
|
2024-03-30 16:14:44 -07:00
|
|
|
bool initHeaderFunctions(BaseCodeGenContext& codeGenContext);
|
2023-03-17 21:20:37 +02:00
|
|
|
void assembleHelpers(AssemblyBuilderX64& build, ModuleHelpers& helpers);
|
2022-10-14 12:48:41 -07:00
|
|
|
|
2023-03-03 22:21:14 +02:00
|
|
|
} // namespace X64
|
2022-10-14 12:48:41 -07:00
|
|
|
} // namespace CodeGen
|
|
|
|
} // namespace Luau
|