mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-16 06:45:44 +08:00
53 lines
1.0 KiB
C++
53 lines
1.0 KiB
C++
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
#pragma once
|
|
|
|
#include "Luau/RegisterA64.h"
|
|
|
|
namespace Luau
|
|
{
|
|
namespace CodeGen
|
|
{
|
|
|
|
enum class AddressKindA64 : uint8_t
|
|
{
|
|
imm, // reg + imm
|
|
reg, // reg + reg
|
|
|
|
// TODO:
|
|
// reg + reg << shift
|
|
// reg + sext(reg) << shift
|
|
// reg + uext(reg) << shift
|
|
// pc + offset
|
|
};
|
|
|
|
struct AddressA64
|
|
{
|
|
AddressA64(RegisterA64 base, int off = 0)
|
|
: kind(AddressKindA64::imm)
|
|
, base(base)
|
|
, offset(xzr)
|
|
, data(off)
|
|
{
|
|
LUAU_ASSERT(base.kind == KindA64::x);
|
|
LUAU_ASSERT(off >= 0 && off < 4096);
|
|
}
|
|
|
|
AddressA64(RegisterA64 base, RegisterA64 offset)
|
|
: kind(AddressKindA64::reg)
|
|
, base(base)
|
|
, offset(offset)
|
|
, data(0)
|
|
{
|
|
LUAU_ASSERT(base.kind == KindA64::x);
|
|
LUAU_ASSERT(offset.kind == KindA64::x);
|
|
}
|
|
|
|
AddressKindA64 kind;
|
|
RegisterA64 base;
|
|
RegisterA64 offset;
|
|
int data;
|
|
};
|
|
|
|
} // namespace CodeGen
|
|
} // namespace Luau
|