mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 19:00:54 +01:00
22 lines
437 B
C++
22 lines
437 B
C++
// 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;
|
|
struct ModuleHelpers;
|
|
|
|
namespace A64
|
|
{
|
|
|
|
class AssemblyBuilderA64;
|
|
|
|
bool initHeaderFunctions(NativeState& data);
|
|
void assembleHelpers(AssemblyBuilderA64& build, ModuleHelpers& helpers);
|
|
|
|
} // namespace A64
|
|
} // namespace CodeGen
|
|
} // namespace Luau
|