2018-03-16 01:06:24 +01:00
|
|
|
using System;
|
2018-02-05 00:08:20 +01:00
|
|
|
using System.IO;
|
2018-03-16 01:06:24 +01:00
|
|
|
using System.Runtime.InteropServices;
|
2018-02-05 00:08:20 +01:00
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace ChocolArm64.Memory
|
|
|
|
{
|
|
|
|
public static class AMemoryHelper
|
|
|
|
{
|
|
|
|
public static void FillWithZeros(AMemory Memory, long Position, int Size)
|
|
|
|
{
|
|
|
|
int Size8 = Size & ~(8 - 1);
|
|
|
|
|
|
|
|
for (int Offs = 0; Offs < Size8; Offs += 8)
|
|
|
|
{
|
|
|
|
Memory.WriteInt64(Position + Offs, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int Offs = Size8; Offs < (Size - Size8); Offs++)
|
|
|
|
{
|
|
|
|
Memory.WriteByte(Position + Offs, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-16 01:06:24 +01:00
|
|
|
public unsafe static T Read<T>(AMemory Memory, long Position) where T : struct
|
|
|
|
{
|
|
|
|
long Size = Marshal.SizeOf<T>();
|
|
|
|
|
|
|
|
if ((ulong)(Position + Size) > AMemoryMgr.AddrSize)
|
|
|
|
{
|
|
|
|
throw new ArgumentOutOfRangeException(nameof(Position));
|
|
|
|
}
|
|
|
|
|
|
|
|
IntPtr Ptr = new IntPtr((byte*)Memory.Ram + Position);
|
|
|
|
|
|
|
|
return Marshal.PtrToStructure<T>(Ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
public unsafe static void Write<T>(AMemory Memory, long Position, T Value) where T : struct
|
|
|
|
{
|
|
|
|
long Size = Marshal.SizeOf<T>();
|
|
|
|
|
|
|
|
if ((ulong)(Position + Size) > AMemoryMgr.AddrSize)
|
|
|
|
{
|
|
|
|
throw new ArgumentOutOfRangeException(nameof(Position));
|
|
|
|
}
|
|
|
|
|
|
|
|
IntPtr Ptr = new IntPtr((byte*)Memory.Ram + Position);
|
|
|
|
|
|
|
|
Marshal.StructureToPtr<T>(Value, Ptr, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static string ReadAsciiString(AMemory Memory, long Position, long MaxSize = -1)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
using (MemoryStream MS = new MemoryStream())
|
|
|
|
{
|
2018-03-16 01:06:24 +01:00
|
|
|
for (long Offs = 0; Offs < MaxSize || MaxSize == -1; Offs++)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
byte Value = (byte)Memory.ReadByte(Position + Offs);
|
|
|
|
|
|
|
|
if (Value == 0)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
MS.WriteByte(Value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Encoding.ASCII.GetString(MS.ToArray());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static long PageRoundUp(long Value)
|
|
|
|
{
|
|
|
|
return (Value + AMemoryMgr.PageMask) & ~AMemoryMgr.PageMask;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static long PageRoundDown(long Value)
|
|
|
|
{
|
|
|
|
return Value & ~AMemoryMgr.PageMask;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|