Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Roblox
GitHub Repository: Roblox/luau
Path: blob/master/CodeGen/src/EmitBuiltinsX64.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
struct Label;
10
struct IrOp;
11
12
namespace X64
13
{
14
15
class AssemblyBuilderX64;
16
struct OperandX64;
17
struct IrRegAllocX64;
18
19
void emitBuiltin(IrRegAllocX64& regs, AssemblyBuilderX64& build, int bfid, int ra, int arg, int nresults);
20
21
} // namespace X64
22
} // namespace CodeGen
23
} // namespace Luau
24
25