luau/CodeGen/src/EmitBuiltinsX64.h

24 lines
452 B
C
Raw Normal View History

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