Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Roblox
GitHub Repository: Roblox/luau
Path: blob/master/CodeGen/src/CodeGenA64.h
2725 views
1
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
2
#pragma once
3
4
namespace Luau
5
{
6
namespace CodeGen
7
{
8
9
class BaseCodeGenContext;
10
struct ModuleHelpers;
11
12
namespace A64
13
{
14
15
class AssemblyBuilderA64;
16
17
bool initHeaderFunctions(BaseCodeGenContext& codeGenContext);
18
void assembleHelpers(AssemblyBuilderA64& build, ModuleHelpers& helpers);
19
20
} // namespace A64
21
} // namespace CodeGen
22
} // namespace Luau
23
24