luau/CodeGen/src/EmitInstructionX64.h

32 lines
1.1 KiB
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);
void emitInstReturn(AssemblyBuilderX64& build, ModuleHelpers& helpers, int ra, int actualResults);
2023-04-07 20:56:27 +01:00
void emitInstSetList(IrRegAllocX64& regs, AssemblyBuilderX64& build, int ra, int rb, int count, uint32_t index);
2023-03-03 13:45:38 +00:00
void emitinstForGLoop(AssemblyBuilderX64& build, int ra, int aux, Label& loopRepeat, Label& loopExit);
2023-03-31 13:21:14 +01:00
void emitinstForGLoopFallback(AssemblyBuilderX64& build, int ra, int aux, Label& loopRepeat);
2023-03-03 13:45:38 +00:00
void emitInstForGPrepXnextFallback(AssemblyBuilderX64& build, int pcpos, int ra, Label& target);
2022-12-09 18:07:25 +00:00
void emitInstGetImportFallback(AssemblyBuilderX64& build, int ra, uint32_t aux);
2023-01-13 20:36:28 +00:00
void emitInstCoverage(AssemblyBuilderX64& build, int pcpos);
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