luau/CodeGen/src/EmitBuiltinsX64.h

24 lines
452 B
C
Raw Normal View History

2022-10-14 01:59:53 +03: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 Label;
2023-03-03 15:45:38 +02:00
struct IrOp;
namespace X64
{
class AssemblyBuilderX64;
2022-10-14 01:59:53 +03:00
struct OperandX64;
2023-03-03 15:45:38 +02:00
struct IrRegAllocX64;
2022-10-14 01:59:53 +03:00
2024-06-21 01:23:57 +03:00
void emitBuiltin(IrRegAllocX64& regs, AssemblyBuilderX64& build, int bfid, int ra, int arg, int nresults);
2022-10-14 01:59:53 +03:00
2023-03-03 15:45:38 +02:00
} // namespace X64
2022-10-14 01:59:53 +03:00
} // namespace CodeGen
} // namespace Luau