2022-10-14 20:48:41 +01: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
|
|
|
|
{
|
|
|
|
|
|
|
|
struct NativeState;
|
2023-03-17 19:20:37 +00:00
|
|
|
struct ModuleHelpers;
|
2022-10-14 20:48:41 +01:00
|
|
|
|
2023-03-03 20:21:14 +00:00
|
|
|
namespace X64
|
2022-10-14 20:48:41 +01:00
|
|
|
{
|
|
|
|
|
2023-03-17 19:20:37 +00:00
|
|
|
class AssemblyBuilderX64;
|
|
|
|
|
2023-04-14 19:06:22 +01:00
|
|
|
bool initHeaderFunctions(NativeState& data);
|
2023-03-17 19:20:37 +00:00
|
|
|
void assembleHelpers(AssemblyBuilderX64& build, ModuleHelpers& helpers);
|
2022-10-14 20:48:41 +01:00
|
|
|
|
2023-03-03 20:21:14 +00:00
|
|
|
} // namespace X64
|
2022-10-14 20:48:41 +01:00
|
|
|
} // namespace CodeGen
|
|
|
|
} // namespace Luau
|