| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990 |
- using ARMeilleure.CodeGen;
- using ARMeilleure.CodeGen.Unwinding;
- using ARMeilleure.CodeGen.X86;
- using ARMeilleure.Memory;
- using ARMeilleure.Translation.Cache;
- using Ryujinx.Common;
- using Ryujinx.Common.Configuration;
- using Ryujinx.Common.Logging;
- using System;
- using System.Buffers.Binary;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.IO;
- using System.IO.Compression;
- using System.Runtime;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- using System.Threading;
- using static ARMeilleure.Translation.PTC.PtcFormatter;
- namespace ARMeilleure.Translation.PTC
- {
- public static class Ptc
- {
- private const string HeaderMagicString = "PTChd\0\0\0";
- private const uint InternalVersion = 1990; //! To be incremented manually for each change to the ARMeilleure project.
- private const string ActualDir = "0";
- private const string BackupDir = "1";
- private const string TitleIdTextDefault = "0000000000000000";
- private const string DisplayVersionDefault = "0";
- internal const int PageTablePointerIndex = -1; // Must be a negative value.
- internal const int JumpPointerIndex = -2; // Must be a negative value.
- internal const int DynamicPointerIndex = -3; // Must be a negative value.
- private const byte FillingByte = 0x00;
- private const CompressionLevel SaveCompressionLevel = CompressionLevel.Fastest;
- private static MemoryStream _infosStream;
- private static MemoryStream _codesStream;
- private static MemoryStream _relocsStream;
- private static MemoryStream _unwindInfosStream;
- private static BinaryWriter _infosWriter;
- private static readonly ulong _headerMagic;
- private static readonly ManualResetEvent _waitEvent;
- private static readonly object _lock;
- private static bool _disposed;
- internal static PtcJumpTable PtcJumpTable { get; private set; }
- internal static string TitleIdText { get; private set; }
- internal static string DisplayVersion { get; private set; }
- internal static string CachePathActual { get; private set; }
- internal static string CachePathBackup { get; private set; }
- internal static PtcState State { get; private set; }
- // Progress reporting helpers
- private static volatile int _translateCount;
- private static volatile int _translateTotalCount;
- public static event Action<PtcLoadingState, int, int> PtcStateChanged;
- static Ptc()
- {
- InitializeMemoryStreams();
- _headerMagic = BinaryPrimitives.ReadUInt64LittleEndian(EncodingCache.UTF8NoBOM.GetBytes(HeaderMagicString).AsSpan());
- _waitEvent = new ManualResetEvent(true);
- _lock = new object();
- _disposed = false;
- PtcJumpTable = new PtcJumpTable();
- TitleIdText = TitleIdTextDefault;
- DisplayVersion = DisplayVersionDefault;
- CachePathActual = string.Empty;
- CachePathBackup = string.Empty;
- Disable();
- }
- public static void Initialize(string titleIdText, string displayVersion, bool enabled)
- {
- Wait();
- PtcProfiler.Wait();
- PtcProfiler.ClearEntries();
- Logger.Info?.Print(LogClass.Ptc, $"Initializing Profiled Persistent Translation Cache (enabled: {enabled}).");
- if (!enabled || string.IsNullOrEmpty(titleIdText) || titleIdText == TitleIdTextDefault)
- {
- TitleIdText = TitleIdTextDefault;
- DisplayVersion = DisplayVersionDefault;
- CachePathActual = string.Empty;
- CachePathBackup = string.Empty;
- Disable();
- return;
- }
- TitleIdText = titleIdText;
- DisplayVersion = !string.IsNullOrEmpty(displayVersion) ? displayVersion : DisplayVersionDefault;
- string workPathActual = Path.Combine(AppDataManager.GamesDirPath, TitleIdText, "cache", "cpu", ActualDir);
- string workPathBackup = Path.Combine(AppDataManager.GamesDirPath, TitleIdText, "cache", "cpu", BackupDir);
- if (!Directory.Exists(workPathActual))
- {
- Directory.CreateDirectory(workPathActual);
- }
- if (!Directory.Exists(workPathBackup))
- {
- Directory.CreateDirectory(workPathBackup);
- }
- CachePathActual = Path.Combine(workPathActual, DisplayVersion);
- CachePathBackup = Path.Combine(workPathBackup, DisplayVersion);
- PreLoad();
- PtcProfiler.PreLoad();
- Enable();
- }
- private static void InitializeMemoryStreams()
- {
- _infosStream = new MemoryStream();
- _codesStream = new MemoryStream();
- _relocsStream = new MemoryStream();
- _unwindInfosStream = new MemoryStream();
- _infosWriter = new BinaryWriter(_infosStream, EncodingCache.UTF8NoBOM, true);
- }
- private static void DisposeMemoryStreams()
- {
- _infosWriter.Dispose();
- _infosStream.Dispose();
- _codesStream.Dispose();
- _relocsStream.Dispose();
- _unwindInfosStream.Dispose();
- }
- private static bool AreMemoryStreamsEmpty()
- {
- return _infosStream.Length == 0L && _codesStream.Length == 0L && _relocsStream.Length == 0L && _unwindInfosStream.Length == 0L;
- }
- private static void ResetMemoryStreamsIfNeeded()
- {
- if (AreMemoryStreamsEmpty())
- {
- return;
- }
- DisposeMemoryStreams();
- InitializeMemoryStreams();
- }
- private static void PreLoad()
- {
- string fileNameActual = string.Concat(CachePathActual, ".cache");
- string fileNameBackup = string.Concat(CachePathBackup, ".cache");
- FileInfo fileInfoActual = new FileInfo(fileNameActual);
- FileInfo fileInfoBackup = new FileInfo(fileNameBackup);
- if (fileInfoActual.Exists && fileInfoActual.Length != 0L)
- {
- if (!Load(fileNameActual, false))
- {
- if (fileInfoBackup.Exists && fileInfoBackup.Length != 0L)
- {
- Load(fileNameBackup, true);
- }
- }
- }
- else if (fileInfoBackup.Exists && fileInfoBackup.Length != 0L)
- {
- Load(fileNameBackup, true);
- }
- }
- private static unsafe bool Load(string fileName, bool isBackup)
- {
- using (FileStream compressedStream = new(fileName, FileMode.Open))
- using (DeflateStream deflateStream = new(compressedStream, CompressionMode.Decompress, true))
- {
- Hash128 currentSizeHash = DeserializeStructure<Hash128>(compressedStream);
- Span<byte> sizeBytes = new byte[sizeof(int)];
- compressedStream.Read(sizeBytes);
- Hash128 expectedSizeHash = XXHash128.ComputeHash(sizeBytes);
- if (currentSizeHash != expectedSizeHash)
- {
- InvalidateCompressedStream(compressedStream);
- return false;
- }
- int size = BinaryPrimitives.ReadInt32LittleEndian(sizeBytes);
- IntPtr intPtr = IntPtr.Zero;
- try
- {
- intPtr = Marshal.AllocHGlobal(size);
- using (UnmanagedMemoryStream stream = new((byte*)intPtr.ToPointer(), size, size, FileAccess.ReadWrite))
- {
- try
- {
- deflateStream.CopyTo(stream);
- }
- catch
- {
- InvalidateCompressedStream(compressedStream);
- return false;
- }
- int hashSize = Unsafe.SizeOf<Hash128>();
- stream.Seek(0L, SeekOrigin.Begin);
- Hash128 currentHash = DeserializeStructure<Hash128>(stream);
- ReadOnlySpan<byte> streamBytes = new(stream.PositionPointer, (int)(stream.Length - stream.Position));
- Hash128 expectedHash = XXHash128.ComputeHash(streamBytes);
- if (currentHash != expectedHash)
- {
- InvalidateCompressedStream(compressedStream);
- return false;
- }
- stream.Seek((long)hashSize, SeekOrigin.Begin);
- Header header = ReadHeader(stream);
- if (header.Magic != _headerMagic)
- {
- InvalidateCompressedStream(compressedStream);
- return false;
- }
- if (header.CacheFileVersion != InternalVersion)
- {
- InvalidateCompressedStream(compressedStream);
- return false;
- }
- if (header.Endianness != GetEndianness())
- {
- InvalidateCompressedStream(compressedStream);
- return false;
- }
- if (header.FeatureInfo != GetFeatureInfo())
- {
- InvalidateCompressedStream(compressedStream);
- return false;
- }
- if (header.OSPlatform != GetOSPlatform())
- {
- InvalidateCompressedStream(compressedStream);
- return false;
- }
- if (header.InfosLen % InfoEntry.Stride != 0)
- {
- InvalidateCompressedStream(compressedStream);
- return false;
- }
- ReadOnlySpan<byte> infosBuf = new(stream.PositionPointer, header.InfosLen);
- stream.Seek(header.InfosLen, SeekOrigin.Current);
- ReadOnlySpan<byte> codesBuf = new(stream.PositionPointer, header.CodesLen);
- stream.Seek(header.CodesLen, SeekOrigin.Current);
- ReadOnlySpan<byte> relocsBuf = new(stream.PositionPointer, header.RelocsLen);
- stream.Seek(header.RelocsLen, SeekOrigin.Current);
- ReadOnlySpan<byte> unwindInfosBuf = new(stream.PositionPointer, header.UnwindInfosLen);
- stream.Seek(header.UnwindInfosLen, SeekOrigin.Current);
- try
- {
- PtcJumpTable = PtcJumpTable.Deserialize(stream);
- }
- catch
- {
- PtcJumpTable = new PtcJumpTable();
- InvalidateCompressedStream(compressedStream);
- return false;
- }
- _infosStream.Write(infosBuf);
- _codesStream.Write(codesBuf);
- _relocsStream.Write(relocsBuf);
- _unwindInfosStream.Write(unwindInfosBuf);
- }
- }
- finally
- {
- if (intPtr != IntPtr.Zero)
- {
- Marshal.FreeHGlobal(intPtr);
- }
- }
- }
- long fileSize = new FileInfo(fileName).Length;
- Logger.Info?.Print(LogClass.Ptc, $"{(isBackup ? "Loaded Backup Translation Cache" : "Loaded Translation Cache")} (size: {fileSize} bytes, translated functions: {GetInfosEntriesCount()}).");
- return true;
- }
- private static Header ReadHeader(Stream stream)
- {
- using (BinaryReader headerReader = new(stream, EncodingCache.UTF8NoBOM, true))
- {
- Header header = new Header();
- header.Magic = headerReader.ReadUInt64();
- header.CacheFileVersion = headerReader.ReadUInt32();
- header.Endianness = headerReader.ReadBoolean();
- header.FeatureInfo = headerReader.ReadUInt64();
- header.OSPlatform = headerReader.ReadUInt32();
- header.InfosLen = headerReader.ReadInt32();
- header.CodesLen = headerReader.ReadInt32();
- header.RelocsLen = headerReader.ReadInt32();
- header.UnwindInfosLen = headerReader.ReadInt32();
- return header;
- }
- }
- private static void InvalidateCompressedStream(FileStream compressedStream)
- {
- compressedStream.SetLength(0L);
- }
- private static void PreSave()
- {
- _waitEvent.Reset();
- try
- {
- string fileNameActual = string.Concat(CachePathActual, ".cache");
- string fileNameBackup = string.Concat(CachePathBackup, ".cache");
- FileInfo fileInfoActual = new FileInfo(fileNameActual);
- if (fileInfoActual.Exists && fileInfoActual.Length != 0L)
- {
- File.Copy(fileNameActual, fileNameBackup, true);
- }
- Save(fileNameActual);
- }
- finally
- {
- ResetMemoryStreamsIfNeeded();
- PtcJumpTable.ClearIfNeeded();
- GCSettings.LargeObjectHeapCompactionMode = GCLargeObjectHeapCompactionMode.CompactOnce;
- }
- _waitEvent.Set();
- }
- private static unsafe void Save(string fileName)
- {
- int translatedFuncsCount;
- int hashSize = Unsafe.SizeOf<Hash128>();
- int size = hashSize + Header.Size + GetMemoryStreamsLength() + PtcJumpTable.GetSerializeSize(PtcJumpTable);
- Span<byte> sizeBytes = new byte[sizeof(int)];
- BinaryPrimitives.WriteInt32LittleEndian(sizeBytes, size);
- Hash128 sizeHash = XXHash128.ComputeHash(sizeBytes);
- Span<byte> sizeHashBytes = new byte[hashSize];
- MemoryMarshal.Write<Hash128>(sizeHashBytes, ref sizeHash);
- IntPtr intPtr = IntPtr.Zero;
- try
- {
- intPtr = Marshal.AllocHGlobal(size);
- using (UnmanagedMemoryStream stream = new((byte*)intPtr.ToPointer(), size, size, FileAccess.ReadWrite))
- {
- stream.Seek((long)hashSize, SeekOrigin.Begin);
- WriteHeader(stream);
- _infosStream.WriteTo(stream);
- _codesStream.WriteTo(stream);
- _relocsStream.WriteTo(stream);
- _unwindInfosStream.WriteTo(stream);
- PtcJumpTable.Serialize(stream, PtcJumpTable);
- stream.Seek((long)hashSize, SeekOrigin.Begin);
- ReadOnlySpan<byte> streamBytes = new(stream.PositionPointer, (int)(stream.Length - stream.Position));
- Hash128 hash = XXHash128.ComputeHash(streamBytes);
- stream.Seek(0L, SeekOrigin.Begin);
- SerializeStructure(stream, hash);
- translatedFuncsCount = GetInfosEntriesCount();
- ResetMemoryStreamsIfNeeded();
- PtcJumpTable.ClearIfNeeded();
- using (FileStream compressedStream = new(fileName, FileMode.OpenOrCreate))
- using (DeflateStream deflateStream = new(compressedStream, SaveCompressionLevel, true))
- {
- try
- {
- compressedStream.Write(sizeHashBytes);
- compressedStream.Write(sizeBytes);
- stream.Seek(0L, SeekOrigin.Begin);
- stream.CopyTo(deflateStream);
- }
- catch
- {
- compressedStream.Position = 0L;
- }
- if (compressedStream.Position < compressedStream.Length)
- {
- compressedStream.SetLength(compressedStream.Position);
- }
- }
- }
- }
- finally
- {
- if (intPtr != IntPtr.Zero)
- {
- Marshal.FreeHGlobal(intPtr);
- }
- }
- long fileSize = new FileInfo(fileName).Length;
- if (fileSize != 0L)
- {
- Logger.Info?.Print(LogClass.Ptc, $"Saved Translation Cache (size: {fileSize} bytes, translated functions: {translatedFuncsCount}).");
- }
- }
- private static int GetMemoryStreamsLength()
- {
- return (int)_infosStream.Length + (int)_codesStream.Length + (int)_relocsStream.Length + (int)_unwindInfosStream.Length;
- }
- private static void WriteHeader(Stream stream)
- {
- using (BinaryWriter headerWriter = new(stream, EncodingCache.UTF8NoBOM, true))
- {
- headerWriter.Write((ulong)_headerMagic); // Header.Magic
- headerWriter.Write((uint)InternalVersion); // Header.CacheFileVersion
- headerWriter.Write((bool)GetEndianness()); // Header.Endianness
- headerWriter.Write((ulong)GetFeatureInfo()); // Header.FeatureInfo
- headerWriter.Write((uint)GetOSPlatform()); // Header.OSPlatform
- headerWriter.Write((int)_infosStream.Length); // Header.InfosLen
- headerWriter.Write((int)_codesStream.Length); // Header.CodesLen
- headerWriter.Write((int)_relocsStream.Length); // Header.RelocsLen
- headerWriter.Write((int)_unwindInfosStream.Length); // Header.UnwindInfosLen
- }
- }
- internal static void LoadTranslations(ConcurrentDictionary<ulong, TranslatedFunction> funcs, IMemoryManager memory, JumpTable jumpTable)
- {
- if (AreMemoryStreamsEmpty())
- {
- return;
- }
- Debug.Assert(funcs.Count == 0);
- _infosStream.Seek(0L, SeekOrigin.Begin);
- _codesStream.Seek(0L, SeekOrigin.Begin);
- _relocsStream.Seek(0L, SeekOrigin.Begin);
- _unwindInfosStream.Seek(0L, SeekOrigin.Begin);
- using (BinaryReader infosReader = new(_infosStream, EncodingCache.UTF8NoBOM, true))
- using (BinaryReader codesReader = new(_codesStream, EncodingCache.UTF8NoBOM, true))
- using (BinaryReader relocsReader = new(_relocsStream, EncodingCache.UTF8NoBOM, true))
- using (BinaryReader unwindInfosReader = new(_unwindInfosStream, EncodingCache.UTF8NoBOM, true))
- {
- for (int i = 0; i < GetInfosEntriesCount(); i++)
- {
- InfoEntry infoEntry = ReadInfo(infosReader);
- if (infoEntry.Stubbed)
- {
- SkipCode(infoEntry.CodeLen);
- SkipReloc(infoEntry.RelocEntriesCount);
- SkipUnwindInfo(unwindInfosReader);
- }
- else if (infoEntry.HighCq || !PtcProfiler.ProfiledFuncs.TryGetValue(infoEntry.Address, out var value) || !value.HighCq)
- {
- Span<byte> code = ReadCode(codesReader, infoEntry.CodeLen);
- if (infoEntry.RelocEntriesCount != 0)
- {
- RelocEntry[] relocEntries = GetRelocEntries(relocsReader, infoEntry.RelocEntriesCount);
- PatchCode(code, relocEntries, memory.PageTablePointer, jumpTable);
- }
- UnwindInfo unwindInfo = ReadUnwindInfo(unwindInfosReader);
- TranslatedFunction func = FastTranslate(code, infoEntry.GuestSize, unwindInfo, infoEntry.HighCq);
- bool isAddressUnique = funcs.TryAdd(infoEntry.Address, func);
- Debug.Assert(isAddressUnique, $"The address 0x{infoEntry.Address:X16} is not unique.");
- }
- else
- {
- infoEntry.Stubbed = true;
- UpdateInfo(infoEntry);
- StubCode(infoEntry.CodeLen);
- StubReloc(infoEntry.RelocEntriesCount);
- StubUnwindInfo(unwindInfosReader);
- }
- }
- }
- if (_infosStream.Position < _infosStream.Length ||
- _codesStream.Position < _codesStream.Length ||
- _relocsStream.Position < _relocsStream.Length ||
- _unwindInfosStream.Position < _unwindInfosStream.Length)
- {
- throw new Exception("Could not reach the end of one or more memory streams.");
- }
- jumpTable.Initialize(PtcJumpTable, funcs);
- PtcJumpTable.WriteJumpTable(jumpTable, funcs);
- PtcJumpTable.WriteDynamicTable(jumpTable);
- Logger.Info?.Print(LogClass.Ptc, $"{funcs.Count} translated functions loaded");
- }
- private static int GetInfosEntriesCount()
- {
- return (int)_infosStream.Length / InfoEntry.Stride;
- }
- private static InfoEntry ReadInfo(BinaryReader infosReader)
- {
- InfoEntry infoEntry = new InfoEntry();
- infoEntry.Address = infosReader.ReadUInt64();
- infoEntry.GuestSize = infosReader.ReadUInt64();
- infoEntry.HighCq = infosReader.ReadBoolean();
- infoEntry.Stubbed = infosReader.ReadBoolean();
- infoEntry.CodeLen = infosReader.ReadInt32();
- infoEntry.RelocEntriesCount = infosReader.ReadInt32();
- return infoEntry;
- }
- private static void SkipCode(int codeLen)
- {
- _codesStream.Seek(codeLen, SeekOrigin.Current);
- }
- private static void SkipReloc(int relocEntriesCount)
- {
- _relocsStream.Seek(relocEntriesCount * RelocEntry.Stride, SeekOrigin.Current);
- }
- private static void SkipUnwindInfo(BinaryReader unwindInfosReader)
- {
- int pushEntriesLength = unwindInfosReader.ReadInt32();
- _unwindInfosStream.Seek(pushEntriesLength * UnwindPushEntry.Stride + UnwindInfo.Stride, SeekOrigin.Current);
- }
- private static Span<byte> ReadCode(BinaryReader codesReader, int codeLen)
- {
- Span<byte> codeBuf = new byte[codeLen];
- codesReader.Read(codeBuf);
- return codeBuf;
- }
- private static RelocEntry[] GetRelocEntries(BinaryReader relocsReader, int relocEntriesCount)
- {
- RelocEntry[] relocEntries = new RelocEntry[relocEntriesCount];
- for (int i = 0; i < relocEntriesCount; i++)
- {
- int position = relocsReader.ReadInt32();
- int index = relocsReader.ReadInt32();
- relocEntries[i] = new RelocEntry(position, index);
- }
- return relocEntries;
- }
- private static void PatchCode(Span<byte> code, RelocEntry[] relocEntries, IntPtr pageTablePointer, JumpTable jumpTable)
- {
- foreach (RelocEntry relocEntry in relocEntries)
- {
- ulong imm;
- if (relocEntry.Index == PageTablePointerIndex)
- {
- imm = (ulong)pageTablePointer.ToInt64();
- }
- else if (relocEntry.Index == JumpPointerIndex)
- {
- imm = (ulong)jumpTable.JumpPointer.ToInt64();
- }
- else if (relocEntry.Index == DynamicPointerIndex)
- {
- imm = (ulong)jumpTable.DynamicPointer.ToInt64();
- }
- else if (Delegates.TryGetDelegateFuncPtrByIndex(relocEntry.Index, out IntPtr funcPtr))
- {
- imm = (ulong)funcPtr.ToInt64();
- }
- else
- {
- throw new Exception($"Unexpected reloc entry {relocEntry}.");
- }
- BinaryPrimitives.WriteUInt64LittleEndian(code.Slice(relocEntry.Position, 8), imm);
- }
- }
- private static UnwindInfo ReadUnwindInfo(BinaryReader unwindInfosReader)
- {
- int pushEntriesLength = unwindInfosReader.ReadInt32();
- UnwindPushEntry[] pushEntries = new UnwindPushEntry[pushEntriesLength];
- for (int i = 0; i < pushEntriesLength; i++)
- {
- int pseudoOp = unwindInfosReader.ReadInt32();
- int prologOffset = unwindInfosReader.ReadInt32();
- int regIndex = unwindInfosReader.ReadInt32();
- int stackOffsetOrAllocSize = unwindInfosReader.ReadInt32();
- pushEntries[i] = new UnwindPushEntry((UnwindPseudoOp)pseudoOp, prologOffset, regIndex, stackOffsetOrAllocSize);
- }
- int prologueSize = unwindInfosReader.ReadInt32();
- return new UnwindInfo(pushEntries, prologueSize);
- }
- private static TranslatedFunction FastTranslate(ReadOnlySpan<byte> code, ulong guestSize, UnwindInfo unwindInfo, bool highCq)
- {
- CompiledFunction cFunc = new CompiledFunction(code.ToArray(), unwindInfo);
- IntPtr codePtr = JitCache.Map(cFunc);
- GuestFunction gFunc = Marshal.GetDelegateForFunctionPointer<GuestFunction>(codePtr);
- TranslatedFunction tFunc = new TranslatedFunction(gFunc, guestSize, highCq);
- return tFunc;
- }
- private static void UpdateInfo(InfoEntry infoEntry)
- {
- _infosStream.Seek(-InfoEntry.Stride, SeekOrigin.Current);
- // WriteInfo.
- _infosWriter.Write((ulong)infoEntry.Address);
- _infosWriter.Write((ulong)infoEntry.GuestSize);
- _infosWriter.Write((bool)infoEntry.HighCq);
- _infosWriter.Write((bool)infoEntry.Stubbed);
- _infosWriter.Write((int)infoEntry.CodeLen);
- _infosWriter.Write((int)infoEntry.RelocEntriesCount);
- }
- private static void StubCode(int codeLen)
- {
- for (int i = 0; i < codeLen; i++)
- {
- _codesStream.WriteByte(FillingByte);
- }
- }
- private static void StubReloc(int relocEntriesCount)
- {
- for (int i = 0; i < relocEntriesCount * RelocEntry.Stride; i++)
- {
- _relocsStream.WriteByte(FillingByte);
- }
- }
- private static void StubUnwindInfo(BinaryReader unwindInfosReader)
- {
- int pushEntriesLength = unwindInfosReader.ReadInt32();
- for (int i = 0; i < pushEntriesLength * UnwindPushEntry.Stride + UnwindInfo.Stride; i++)
- {
- _unwindInfosStream.WriteByte(FillingByte);
- }
- }
- internal static void MakeAndSaveTranslations(ConcurrentDictionary<ulong, TranslatedFunction> funcs, IMemoryManager memory, JumpTable jumpTable)
- {
- var profiledFuncsToTranslate = PtcProfiler.GetProfiledFuncsToTranslate(funcs);
- if (profiledFuncsToTranslate.Count == 0)
- {
- ResetMemoryStreamsIfNeeded();
- PtcJumpTable.ClearIfNeeded();
- GCSettings.LargeObjectHeapCompactionMode = GCLargeObjectHeapCompactionMode.CompactOnce;
- return;
- }
- _translateCount = 0;
- _translateTotalCount = profiledFuncsToTranslate.Count;
- PtcStateChanged?.Invoke(PtcLoadingState.Start, _translateCount, _translateTotalCount);
- using AutoResetEvent progressReportEvent = new AutoResetEvent(false);
- Thread progressReportThread = new Thread(ReportProgress)
- {
- Name = "Ptc.ProgressReporter",
- Priority = ThreadPriority.Lowest,
- IsBackground = true
- };
- progressReportThread.Start(progressReportEvent);
- void TranslateFuncs()
- {
- while (profiledFuncsToTranslate.TryDequeue(out var item))
- {
- ulong address = item.address;
- Debug.Assert(PtcProfiler.IsAddressInStaticCodeRange(address));
- TranslatedFunction func = Translator.Translate(memory, jumpTable, address, item.mode, item.highCq);
- bool isAddressUnique = funcs.TryAdd(address, func);
- Debug.Assert(isAddressUnique, $"The address 0x{address:X16} is not unique.");
- if (func.HighCq)
- {
- jumpTable.RegisterFunction(address, func);
- }
- Interlocked.Increment(ref _translateCount);
- if (State != PtcState.Enabled)
- {
- break;
- }
- }
- Translator.DisposePools();
- }
- int maxDegreeOfParallelism = (Environment.ProcessorCount * 3) / 4;
- List<Thread> threads = new List<Thread>();
- for (int i = 0; i < maxDegreeOfParallelism; i++)
- {
- Thread thread = new Thread(TranslateFuncs);
- thread.IsBackground = true;
- threads.Add(thread);
- }
- threads.ForEach((thread) => thread.Start());
- threads.ForEach((thread) => thread.Join());
- threads.Clear();
- progressReportEvent.Set();
- progressReportThread.Join();
- PtcStateChanged?.Invoke(PtcLoadingState.Loaded, _translateCount, _translateTotalCount);
- Logger.Info?.Print(LogClass.Ptc, $"{_translateCount} of {_translateTotalCount} functions translated");
- PtcJumpTable.Initialize(jumpTable);
- PtcJumpTable.ReadJumpTable(jumpTable);
- PtcJumpTable.ReadDynamicTable(jumpTable);
- Thread preSaveThread = new Thread(PreSave);
- preSaveThread.IsBackground = true;
- preSaveThread.Start();
- }
- private static void ReportProgress(object state)
- {
- const int refreshRate = 50; // ms
- AutoResetEvent endEvent = (AutoResetEvent)state;
- int count = 0;
- do
- {
- int newCount = _translateCount;
- if (count != newCount)
- {
- PtcStateChanged?.Invoke(PtcLoadingState.Loading, newCount, _translateTotalCount);
- count = newCount;
- }
- }
- while (!endEvent.WaitOne(refreshRate));
- }
- internal static void WriteInfoCodeRelocUnwindInfo(ulong address, ulong guestSize, bool highCq, PtcInfo ptcInfo)
- {
- lock (_lock)
- {
- // WriteInfo.
- _infosWriter.Write((ulong)address); // InfoEntry.Address
- _infosWriter.Write((ulong)guestSize); // InfoEntry.GuestSize
- _infosWriter.Write((bool)highCq); // InfoEntry.HighCq
- _infosWriter.Write((bool)false); // InfoEntry.Stubbed
- _infosWriter.Write((int)ptcInfo.Code.Length); // InfoEntry.CodeLen
- _infosWriter.Write((int)ptcInfo.RelocEntriesCount); // InfoEntry.RelocEntriesCount
- // WriteCode.
- _codesStream.Write(ptcInfo.Code.AsSpan());
- // WriteReloc.
- ptcInfo.RelocStream.WriteTo(_relocsStream);
- // WriteUnwindInfo.
- ptcInfo.UnwindInfoStream.WriteTo(_unwindInfosStream);
- }
- }
- private static bool GetEndianness()
- {
- return BitConverter.IsLittleEndian;
- }
- private static ulong GetFeatureInfo()
- {
- return (ulong)HardwareCapabilities.FeatureInfoEdx << 32 | (uint)HardwareCapabilities.FeatureInfoEcx;
- }
- private static uint GetOSPlatform()
- {
- uint osPlatform = 0u;
- osPlatform |= (RuntimeInformation.IsOSPlatform(OSPlatform.FreeBSD) ? 1u : 0u) << 0;
- osPlatform |= (RuntimeInformation.IsOSPlatform(OSPlatform.Linux) ? 1u : 0u) << 1;
- osPlatform |= (RuntimeInformation.IsOSPlatform(OSPlatform.OSX) ? 1u : 0u) << 2;
- osPlatform |= (RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? 1u : 0u) << 3;
- return osPlatform;
- }
- private struct Header
- {
- public const int Size = 41; // Bytes.
- public ulong Magic;
- public uint CacheFileVersion;
- public bool Endianness;
- public ulong FeatureInfo;
- public uint OSPlatform;
- public int InfosLen;
- public int CodesLen;
- public int RelocsLen;
- public int UnwindInfosLen;
- }
- private struct InfoEntry
- {
- public const int Stride = 26; // Bytes.
- public ulong Address;
- public ulong GuestSize;
- public bool HighCq;
- public bool Stubbed;
- public int CodeLen;
- public int RelocEntriesCount;
- }
- private static void Enable()
- {
- State = PtcState.Enabled;
- }
- public static void Continue()
- {
- if (State == PtcState.Enabled)
- {
- State = PtcState.Continuing;
- }
- }
- public static void Close()
- {
- if (State == PtcState.Enabled ||
- State == PtcState.Continuing)
- {
- State = PtcState.Closing;
- }
- }
- internal static void Disable()
- {
- State = PtcState.Disabled;
- }
- private static void Wait()
- {
- _waitEvent.WaitOne();
- }
- public static void Dispose()
- {
- if (!_disposed)
- {
- _disposed = true;
- Wait();
- _waitEvent.Dispose();
- DisposeMemoryStreams();
- }
- }
- }
- }
|