2018-10-31 02:43:02 +01:00
|
|
|
using ChocolArm64.State;
|
|
|
|
using System.Reflection.Emit;
|
|
|
|
|
|
|
|
namespace ChocolArm64.Translation
|
|
|
|
{
|
2018-12-11 01:58:52 +01:00
|
|
|
struct ILOpCodeLoad : IILEmit
|
2018-10-31 02:43:02 +01:00
|
|
|
{
|
|
|
|
public int Index { get; private set; }
|
|
|
|
|
|
|
|
public IoType IoType { get; private set; }
|
|
|
|
|
|
|
|
public RegisterSize RegisterSize { get; private set; }
|
|
|
|
|
2018-12-11 01:58:52 +01:00
|
|
|
public ILOpCodeLoad(int index, IoType ioType, RegisterSize registerSize = 0)
|
2018-10-31 02:43:02 +01:00
|
|
|
{
|
|
|
|
Index = index;
|
|
|
|
IoType = ioType;
|
|
|
|
RegisterSize = registerSize;
|
|
|
|
}
|
|
|
|
|
2018-12-11 01:58:52 +01:00
|
|
|
public void Emit(ILMethodBuilder context)
|
2018-10-31 02:43:02 +01:00
|
|
|
{
|
|
|
|
switch (IoType)
|
|
|
|
{
|
|
|
|
case IoType.Arg: context.Generator.EmitLdarg(Index); break;
|
|
|
|
|
|
|
|
case IoType.Flag: EmitLdloc(context, Index, RegisterType.Flag); break;
|
|
|
|
case IoType.Int: EmitLdloc(context, Index, RegisterType.Int); break;
|
|
|
|
case IoType.Vector: EmitLdloc(context, Index, RegisterType.Vector); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-11 01:58:52 +01:00
|
|
|
private void EmitLdloc(ILMethodBuilder context, int index, RegisterType registerType)
|
2018-10-31 02:43:02 +01:00
|
|
|
{
|
|
|
|
Register reg = new Register(index, registerType);
|
|
|
|
|
|
|
|
context.Generator.EmitLdloc(context.GetLocalIndex(reg));
|
|
|
|
|
|
|
|
if (registerType == RegisterType.Int &&
|
|
|
|
RegisterSize == RegisterSize.Int32)
|
|
|
|
{
|
|
|
|
context.Generator.Emit(OpCodes.Conv_U4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|