| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509 |
- using ARMeilleure.Decoders;
- using ARMeilleure.IntermediateRepresentation;
- using ARMeilleure.Memory;
- using ARMeilleure.Translation;
- using System;
- using static ARMeilleure.Instructions.InstEmitHelper;
- using static ARMeilleure.IntermediateRepresentation.OperandHelper;
- namespace ARMeilleure.Instructions
- {
- static class InstEmitMemoryHelper
- {
- private enum Extension
- {
- Zx,
- Sx32,
- Sx64
- }
- public static void EmitLoadZx(ArmEmitterContext context, Operand address, int rt, int size)
- {
- EmitLoad(context, address, Extension.Zx, rt, size);
- }
- public static void EmitLoadSx32(ArmEmitterContext context, Operand address, int rt, int size)
- {
- EmitLoad(context, address, Extension.Sx32, rt, size);
- }
- public static void EmitLoadSx64(ArmEmitterContext context, Operand address, int rt, int size)
- {
- EmitLoad(context, address, Extension.Sx64, rt, size);
- }
- private static void EmitLoad(ArmEmitterContext context, Operand address, Extension ext, int rt, int size)
- {
- bool isSimd = IsSimd(context);
- if ((uint)size > (isSimd ? 4 : 3))
- {
- throw new ArgumentOutOfRangeException(nameof(size));
- }
- if (isSimd)
- {
- EmitReadVector(context, address, context.VectorZero(), rt, 0, size);
- }
- else
- {
- EmitReadInt(context, address, rt, size);
- }
- if (!isSimd)
- {
- Operand value = GetIntOrZR(context, rt);
- if (ext == Extension.Sx32 || ext == Extension.Sx64)
- {
- OperandType destType = ext == Extension.Sx64 ? OperandType.I64 : OperandType.I32;
- switch (size)
- {
- case 0: value = context.SignExtend8 (destType, value); break;
- case 1: value = context.SignExtend16(destType, value); break;
- case 2: value = context.SignExtend32(destType, value); break;
- }
- }
- SetIntOrZR(context, rt, value);
- }
- }
- public static void EmitLoadSimd(
- ArmEmitterContext context,
- Operand address,
- Operand vector,
- int rt,
- int elem,
- int size)
- {
- EmitReadVector(context, address, vector, rt, elem, size);
- }
- public static void EmitStore(ArmEmitterContext context, Operand address, int rt, int size)
- {
- bool isSimd = IsSimd(context);
- if ((uint)size > (isSimd ? 4 : 3))
- {
- throw new ArgumentOutOfRangeException(nameof(size));
- }
- if (isSimd)
- {
- EmitWriteVector(context, address, rt, 0, size);
- }
- else
- {
- EmitWriteInt(context, address, rt, size);
- }
- }
- public static void EmitStoreSimd(
- ArmEmitterContext context,
- Operand address,
- int rt,
- int elem,
- int size)
- {
- EmitWriteVector(context, address, rt, elem, size);
- }
- private static bool IsSimd(ArmEmitterContext context)
- {
- return context.CurrOp is IOpCodeSimd &&
- !(context.CurrOp is OpCodeSimdMemMs ||
- context.CurrOp is OpCodeSimdMemSs);
- }
- private static void EmitReadInt(ArmEmitterContext context, Operand address, int rt, int size)
- {
- Operand isUnalignedAddr = EmitAddressCheck(context, address, size);
- Operand lblFastPath = Label();
- Operand lblSlowPath = Label();
- Operand lblEnd = Label();
- context.BranchIfFalse(lblFastPath, isUnalignedAddr);
- context.MarkLabel(lblSlowPath);
- EmitReadIntFallback(context, address, rt, size);
- context.Branch(lblEnd);
- context.MarkLabel(lblFastPath);
- Operand physAddr = EmitPtPointerLoad(context, address, lblSlowPath);
- Operand value = null;
- switch (size)
- {
- case 0:
- value = context.Load8(physAddr);
- break;
- case 1:
- value = context.Load16(physAddr);
- break;
- case 2:
- value = context.Load(OperandType.I32, physAddr);
- break;
- case 3:
- value = context.Load(OperandType.I64, physAddr);
- break;
- }
- SetInt(context, rt, value);
- context.MarkLabel(lblEnd);
- }
- private static void EmitReadVector(
- ArmEmitterContext context,
- Operand address,
- Operand vector,
- int rt,
- int elem,
- int size)
- {
- Operand isUnalignedAddr = EmitAddressCheck(context, address, size);
- Operand lblFastPath = Label();
- Operand lblSlowPath = Label();
- Operand lblEnd = Label();
- context.BranchIfFalse(lblFastPath, isUnalignedAddr);
- context.MarkLabel(lblSlowPath);
- EmitReadVectorFallback(context, address, vector, rt, elem, size);
- context.Branch(lblEnd);
- context.MarkLabel(lblFastPath);
- Operand physAddr = EmitPtPointerLoad(context, address, lblSlowPath);
- Operand value = null;
- switch (size)
- {
- case 0:
- value = context.VectorInsert8(vector, context.Load8(physAddr), elem);
- break;
- case 1:
- value = context.VectorInsert16(vector, context.Load16(physAddr), elem);
- break;
- case 2:
- value = context.VectorInsert(vector, context.Load(OperandType.I32, physAddr), elem);
- break;
- case 3:
- value = context.VectorInsert(vector, context.Load(OperandType.I64, physAddr), elem);
- break;
- case 4:
- value = context.Load(OperandType.V128, physAddr);
- break;
- }
- context.Copy(GetVec(rt), value);
- context.MarkLabel(lblEnd);
- }
- private static Operand VectorCreate(ArmEmitterContext context, Operand value)
- {
- return context.VectorInsert(context.VectorZero(), value, 0);
- }
- private static void EmitWriteInt(ArmEmitterContext context, Operand address, int rt, int size)
- {
- Operand isUnalignedAddr = EmitAddressCheck(context, address, size);
- Operand lblFastPath = Label();
- Operand lblSlowPath = Label();
- Operand lblEnd = Label();
- context.BranchIfFalse(lblFastPath, isUnalignedAddr);
- context.MarkLabel(lblSlowPath);
- EmitWriteIntFallback(context, address, rt, size);
- context.Branch(lblEnd);
- context.MarkLabel(lblFastPath);
- Operand physAddr = EmitPtPointerLoad(context, address, lblSlowPath);
- Operand value = GetInt(context, rt);
- if (size < 3 && value.Type == OperandType.I64)
- {
- value = context.ConvertI64ToI32(value);
- }
- switch (size)
- {
- case 0: context.Store8 (physAddr, value); break;
- case 1: context.Store16(physAddr, value); break;
- case 2: context.Store (physAddr, value); break;
- case 3: context.Store (physAddr, value); break;
- }
- context.MarkLabel(lblEnd);
- }
- private static void EmitWriteVector(
- ArmEmitterContext context,
- Operand address,
- int rt,
- int elem,
- int size)
- {
- Operand isUnalignedAddr = EmitAddressCheck(context, address, size);
- Operand lblFastPath = Label();
- Operand lblSlowPath = Label();
- Operand lblEnd = Label();
- context.BranchIfFalse(lblFastPath, isUnalignedAddr);
- context.MarkLabel(lblSlowPath);
- EmitWriteVectorFallback(context, address, rt, elem, size);
- context.Branch(lblEnd);
- context.MarkLabel(lblFastPath);
- Operand physAddr = EmitPtPointerLoad(context, address, lblSlowPath);
- Operand value = GetVec(rt);
- switch (size)
- {
- case 0:
- context.Store8(physAddr, context.VectorExtract8(value, elem));
- break;
- case 1:
- context.Store16(physAddr, context.VectorExtract16(value, elem));
- break;
- case 2:
- context.Store(physAddr, context.VectorExtract(OperandType.FP32, value, elem));
- break;
- case 3:
- context.Store(physAddr, context.VectorExtract(OperandType.FP64, value, elem));
- break;
- case 4:
- context.Store(physAddr, value);
- break;
- }
- context.MarkLabel(lblEnd);
- }
- private static Operand EmitAddressCheck(ArmEmitterContext context, Operand address, int size)
- {
- long addressCheckMask = ~(context.Memory.AddressSpaceSize - 1);
- addressCheckMask |= (1u << size) - 1;
- return context.BitwiseAnd(address, Const(address.Type, addressCheckMask));
- }
- private static Operand EmitPtPointerLoad(ArmEmitterContext context, Operand address, Operand lblFallbackPath)
- {
- Operand pte = Const(context.Memory.PageTable.ToInt64());
- int bit = MemoryManager.PageBits;
- do
- {
- Operand addrPart = context.ShiftRightUI(address, Const(bit));
- bit += context.Memory.PtLevelBits;
- if (bit < context.Memory.AddressSpaceBits)
- {
- addrPart = context.BitwiseAnd(addrPart, Const(addrPart.Type, context.Memory.PtLevelMask));
- }
- Operand pteOffset = context.ShiftLeft(addrPart, Const(3));
- if (pteOffset.Type == OperandType.I32)
- {
- pteOffset = context.ZeroExtend32(OperandType.I64, pteOffset);
- }
- Operand pteAddress = context.Add(pte, pteOffset);
- pte = context.Load(OperandType.I64, pteAddress);
- }
- while (bit < context.Memory.AddressSpaceBits);
- Operand hasFlagSet = context.BitwiseAnd(pte, Const((long)MemoryManager.PteFlagsMask));
- context.BranchIfTrue(lblFallbackPath, hasFlagSet);
- Operand pageOffset = context.BitwiseAnd(address, Const(address.Type, MemoryManager.PageMask));
- if (pageOffset.Type == OperandType.I32)
- {
- pageOffset = context.ZeroExtend32(OperandType.I64, pageOffset);
- }
- Operand physAddr = context.Add(pte, pageOffset);
- return physAddr;
- }
- private static void EmitReadIntFallback(ArmEmitterContext context, Operand address, int rt, int size)
- {
- Delegate fallbackMethodDlg = null;
- switch (size)
- {
- case 0: fallbackMethodDlg = new _U8_U64 (NativeInterface.ReadByte); break;
- case 1: fallbackMethodDlg = new _U16_U64(NativeInterface.ReadUInt16); break;
- case 2: fallbackMethodDlg = new _U32_U64(NativeInterface.ReadUInt32); break;
- case 3: fallbackMethodDlg = new _U64_U64(NativeInterface.ReadUInt64); break;
- }
- SetInt(context, rt, context.Call(fallbackMethodDlg, address));
- }
- private static void EmitReadVectorFallback(
- ArmEmitterContext context,
- Operand address,
- Operand vector,
- int rt,
- int elem,
- int size)
- {
- Delegate fallbackMethodDlg = null;
- switch (size)
- {
- case 0: fallbackMethodDlg = new _U8_U64 (NativeInterface.ReadByte); break;
- case 1: fallbackMethodDlg = new _U16_U64 (NativeInterface.ReadUInt16); break;
- case 2: fallbackMethodDlg = new _U32_U64 (NativeInterface.ReadUInt32); break;
- case 3: fallbackMethodDlg = new _U64_U64 (NativeInterface.ReadUInt64); break;
- case 4: fallbackMethodDlg = new _V128_U64(NativeInterface.ReadVector128); break;
- }
- Operand value = context.Call(fallbackMethodDlg, address);
- switch (size)
- {
- case 0: value = context.VectorInsert8 (vector, value, elem); break;
- case 1: value = context.VectorInsert16(vector, value, elem); break;
- case 2: value = context.VectorInsert (vector, value, elem); break;
- case 3: value = context.VectorInsert (vector, value, elem); break;
- }
- context.Copy(GetVec(rt), value);
- }
- private static void EmitWriteIntFallback(ArmEmitterContext context, Operand address, int rt, int size)
- {
- Delegate fallbackMethodDlg = null;
- switch (size)
- {
- case 0: fallbackMethodDlg = new _Void_U64_U8 (NativeInterface.WriteByte); break;
- case 1: fallbackMethodDlg = new _Void_U64_U16(NativeInterface.WriteUInt16); break;
- case 2: fallbackMethodDlg = new _Void_U64_U32(NativeInterface.WriteUInt32); break;
- case 3: fallbackMethodDlg = new _Void_U64_U64(NativeInterface.WriteUInt64); break;
- }
- Operand value = GetInt(context, rt);
- if (size < 3 && value.Type == OperandType.I64)
- {
- value = context.ConvertI64ToI32(value);
- }
- context.Call(fallbackMethodDlg, address, value);
- }
- private static void EmitWriteVectorFallback(
- ArmEmitterContext context,
- Operand address,
- int rt,
- int elem,
- int size)
- {
- Delegate fallbackMethodDlg = null;
- switch (size)
- {
- case 0: fallbackMethodDlg = new _Void_U64_U8 (NativeInterface.WriteByte); break;
- case 1: fallbackMethodDlg = new _Void_U64_U16 (NativeInterface.WriteUInt16); break;
- case 2: fallbackMethodDlg = new _Void_U64_U32 (NativeInterface.WriteUInt32); break;
- case 3: fallbackMethodDlg = new _Void_U64_U64 (NativeInterface.WriteUInt64); break;
- case 4: fallbackMethodDlg = new _Void_U64_V128(NativeInterface.WriteVector128); break;
- }
- Operand value = null;
- if (size < 4)
- {
- switch (size)
- {
- case 0:
- value = context.VectorExtract8(GetVec(rt), elem);
- break;
- case 1:
- value = context.VectorExtract16(GetVec(rt), elem);
- break;
- case 2:
- value = context.VectorExtract(OperandType.I32, GetVec(rt), elem);
- break;
- case 3:
- value = context.VectorExtract(OperandType.I64, GetVec(rt), elem);
- break;
- }
- }
- else
- {
- value = GetVec(rt);
- }
- context.Call(fallbackMethodDlg, address, value);
- }
- private static Operand GetInt(ArmEmitterContext context, int rt)
- {
- return context.CurrOp is OpCode32 ? GetIntA32(context, rt) : GetIntOrZR(context, rt);
- }
- private static void SetInt(ArmEmitterContext context, int rt, Operand value)
- {
- if (context.CurrOp is OpCode32)
- {
- SetIntA32(context, rt, value);
- }
- else
- {
- SetIntOrZR(context, rt, value);
- }
- }
- }
- }
|