using ARMeilleure.Decoders;
using ARMeilleure.IntermediateRepresentation;
using ARMeilleure.Translation;
using static ARMeilleure.Instructions.InstEmitHelper;
using static ARMeilleure.Instructions.InstEmitMemoryHelper;
using static ARMeilleure.IntermediateRepresentation.Operand.Factory;
namespace ARMeilleure.Instructions
{
static partial class InstEmit
public static void Adr(ArmEmitterContext context)
OpCodeAdr op = (OpCodeAdr)context.CurrOp;
SetIntOrZR(context, op.Rd, Const(op.Address + (ulong)op.Immediate));
}
public static void Adrp(ArmEmitterContext context)
ulong address = (op.Address & ~0xfffUL) + ((ulong)op.Immediate << 12);
SetIntOrZR(context, op.Rd, Const(address));
public static void Ldr(ArmEmitterContext context) => EmitLdr(context, signed: false);
public static void Ldrs(ArmEmitterContext context) => EmitLdr(context, signed: true);
private static void EmitLdr(ArmEmitterContext context, bool signed)
OpCodeMem op = (OpCodeMem)context.CurrOp;
Operand address = GetAddress(context);
if (signed && op.Extend64)
EmitLoadSx64(context, address, op.Rt, op.Size);
else if (signed)
EmitLoadSx32(context, address, op.Rt, op.Size);
else
EmitLoadZx(context, address, op.Rt, op.Size);
EmitWBackIfNeeded(context, address);
public static void Ldr_Literal(ArmEmitterContext context)
IOpCodeLit op = (IOpCodeLit)context.CurrOp;
if (op.Prefetch)
return;
if (op.Signed)
EmitLoadSx64(context, Const(op.Immediate), op.Rt, op.Size);
EmitLoadZx(context, Const(op.Immediate), op.Rt, op.Size);
public static void Ldp(ArmEmitterContext context)
OpCodeMemPair op = (OpCodeMemPair)context.CurrOp;
void EmitLoad(int rt, Operand ldAddr)
if (op.Extend64)
EmitLoadSx64(context, ldAddr, rt, op.Size);
EmitLoadZx(context, ldAddr, rt, op.Size);
Operand address2 = GetAddress(context, 1L << op.Size);
EmitLoad(op.Rt, address);
EmitLoad(op.Rt2, address2);
public static void Str(ArmEmitterContext context)
EmitStore(context, address, op.Rt, op.Size);
public static void Stp(ArmEmitterContext context)
EmitStore(context, address2, op.Rt2, op.Size);
private static Operand GetAddress(ArmEmitterContext context, long addend = 0)
Operand address = default;
switch (context.CurrOp)
case OpCodeMemImm op:
address = context.Copy(GetIntOrSP(context, op.Rn));
// Pre-indexing.
if (!op.PostIdx)
address = context.Add(address, Const(op.Immediate + addend));
else if (addend != 0)
address = context.Add(address, Const(addend));
break;
case OpCodeMemReg op:
Operand n = GetIntOrSP(context, op.Rn);
Operand m = GetExtendedM(context, op.Rm, op.IntType);
if (op.Shift)
m = context.ShiftLeft(m, Const(op.Size));
address = context.Add(n, m);
if (addend != 0)
return address;
private static void EmitWBackIfNeeded(ArmEmitterContext context, Operand address)
// Check whenever the current OpCode has post-indexed write back, if so write it.
if (context.CurrOp is OpCodeMemImm op && op.WBack)
if (op.PostIdx)
address = context.Add(address, Const(op.Immediate));
SetIntOrSP(context, op.Rn, address);