luau/CodeGen/src/IrRegAllocX64.h

59 lines
1.3 KiB
C
Raw Normal View History

2023-02-25 02:24:22 +08:00
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
#pragma once
#include "Luau/IrData.h"
#include "Luau/RegisterX64.h"
#include <array>
#include <initializer_list>
namespace Luau
{
namespace CodeGen
{
2023-03-03 21:45:38 +08:00
namespace X64
{
2023-02-25 02:24:22 +08:00
struct IrRegAllocX64
{
IrRegAllocX64(IrFunction& function);
RegisterX64 allocGprReg(SizeX64 preferredSize);
RegisterX64 allocXmmReg();
RegisterX64 allocGprRegOrReuse(SizeX64 preferredSize, uint32_t index, std::initializer_list<IrOp> oprefs);
RegisterX64 allocXmmRegOrReuse(uint32_t index, std::initializer_list<IrOp> oprefs);
2023-03-03 21:45:38 +08:00
RegisterX64 takeGprReg(RegisterX64 reg);
2023-02-25 02:24:22 +08:00
void freeReg(RegisterX64 reg);
void freeLastUseReg(IrInst& target, uint32_t index);
void freeLastUseRegs(const IrInst& inst, uint32_t index);
2023-03-03 21:45:38 +08:00
void assertAllFree() const;
2023-02-25 02:24:22 +08:00
IrFunction& function;
std::array<bool, 16> freeGprMap;
std::array<bool, 16> freeXmmMap;
};
struct ScopedRegX64
{
ScopedRegX64(IrRegAllocX64& owner, SizeX64 size);
ScopedRegX64(IrRegAllocX64& owner, RegisterX64 reg);
~ScopedRegX64();
ScopedRegX64(const ScopedRegX64&) = delete;
ScopedRegX64& operator=(const ScopedRegX64&) = delete;
void free();
IrRegAllocX64& owner;
RegisterX64 reg;
};
2023-03-03 21:45:38 +08:00
} // namespace X64
2023-02-25 02:24:22 +08:00
} // namespace CodeGen
} // namespace Luau