luau/CodeGen/src/EmitInstructionX64.h

28 lines
782 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
#include <stdint.h>
namespace Luau
{
namespace CodeGen
{
struct Label;
2022-10-27 23:22:49 +01:00
struct ModuleHelpers;
2022-10-13 23:59:53 +01:00
2023-03-03 13:45:38 +00:00
namespace X64
{
class AssemblyBuilderX64;
2023-03-31 13:21:14 +01:00
struct IrRegAllocX64;
2023-03-03 13:45:38 +00:00
2023-03-24 17:34:14 +00:00
void emitInstCall(AssemblyBuilderX64& build, ModuleHelpers& helpers, int ra, int nparams, int nresults);
2023-06-16 18:01:18 +01:00
void emitInstReturn(AssemblyBuilderX64& build, ModuleHelpers& helpers, int ra, int actualResults, bool functionVariadic);
2023-04-07 20:56:27 +01:00
void emitInstSetList(IrRegAllocX64& regs, AssemblyBuilderX64& build, int ra, int rb, int count, uint32_t index);
2023-04-14 13:05:27 +01:00
void emitInstForGLoop(AssemblyBuilderX64& build, int ra, int aux, Label& loopRepeat);
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