mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-30 09:47:11 +02:00

* dotnet format style --severity info Some changes were manually reverted. * dotnet format analyzers --serverity info Some changes have been minimally adapted. * Restore a few unused methods and variables * Silence dotnet format IDE0060 warnings * Silence dotnet format IDE0052 warnings * Address or silence dotnet format IDE1006 warnings * Address or silence dotnet format CA2208 warnings * Address dotnet format CA1822 warnings * Address or silence dotnet format CA1069 warnings * Silence CA1806 and CA1834 issues * Address dotnet format CA1401 warnings * Fix new dotnet-format issues after rebase * Address review comments * Address dotnet format CA2208 warnings properly * Fix formatting for switch expressions * Address most dotnet format whitespace warnings * Apply dotnet format whitespace formatting A few of them have been manually reverted and the corresponding warning was silenced * Add previously silenced warnings back I have no clue how these disappeared * Revert formatting changes for OpCodeTable.cs * Enable formatting for a few cases again * Format if-blocks correctly * Enable formatting for a few more cases again * Fix inline comment alignment * Run dotnet format after rebase and remove unused usings - analyzers - style - whitespace * Disable 'prefer switch expression' rule * Add comments to disabled warnings * Remove a few unused parameters * Adjust namespaces * Simplify properties and array initialization, Use const when possible, Remove trailing commas * Start working on disabled warnings * Fix and silence a few dotnet-format warnings again * Address IDE0251 warnings * Address a few disabled IDE0060 warnings * Silence IDE0060 in .editorconfig * Revert "Simplify properties and array initialization, Use const when possible, Remove trailing commas" This reverts commit 9462e4136c0a2100dc28b20cf9542e06790aa67e. * dotnet format whitespace after rebase * First dotnet format pass * Remove unnecessary formatting exclusion * Add unsafe dotnet format changes * Change visibility of JitSupportDarwin to internal
179 lines
5.3 KiB
C#
179 lines
5.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace ARMeilleure.Translation.PTC
|
|
{
|
|
static class PtcFormatter
|
|
{
|
|
#region "Deserialize"
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public static Dictionary<TKey, TValue> DeserializeDictionary<TKey, TValue>(Stream stream, Func<Stream, TValue> valueFunc) where TKey : struct
|
|
{
|
|
Dictionary<TKey, TValue> dictionary = new();
|
|
|
|
int count = DeserializeStructure<int>(stream);
|
|
|
|
for (int i = 0; i < count; i++)
|
|
{
|
|
TKey key = DeserializeStructure<TKey>(stream);
|
|
TValue value = valueFunc(stream);
|
|
|
|
dictionary.Add(key, value);
|
|
}
|
|
|
|
return dictionary;
|
|
}
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public static List<T> DeserializeList<T>(Stream stream) where T : struct
|
|
{
|
|
List<T> list = new();
|
|
|
|
int count = DeserializeStructure<int>(stream);
|
|
|
|
for (int i = 0; i < count; i++)
|
|
{
|
|
T item = DeserializeStructure<T>(stream);
|
|
|
|
list.Add(item);
|
|
}
|
|
|
|
return list;
|
|
}
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public static T DeserializeStructure<T>(Stream stream) where T : struct
|
|
{
|
|
T structure = default;
|
|
|
|
Span<T> spanT = MemoryMarshal.CreateSpan(ref structure, 1);
|
|
int bytesCount = stream.Read(MemoryMarshal.AsBytes(spanT));
|
|
|
|
if (bytesCount != Unsafe.SizeOf<T>())
|
|
{
|
|
throw new EndOfStreamException();
|
|
}
|
|
|
|
return structure;
|
|
}
|
|
#endregion
|
|
|
|
#region "GetSerializeSize"
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public static int GetSerializeSizeDictionary<TKey, TValue>(Dictionary<TKey, TValue> dictionary, Func<TValue, int> valueFunc) where TKey : struct
|
|
{
|
|
int size = 0;
|
|
|
|
size += Unsafe.SizeOf<int>();
|
|
|
|
foreach ((_, TValue value) in dictionary)
|
|
{
|
|
size += Unsafe.SizeOf<TKey>();
|
|
size += valueFunc(value);
|
|
}
|
|
|
|
return size;
|
|
}
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public static int GetSerializeSizeList<T>(List<T> list) where T : struct
|
|
{
|
|
int size = 0;
|
|
|
|
size += Unsafe.SizeOf<int>();
|
|
|
|
size += list.Count * Unsafe.SizeOf<T>();
|
|
|
|
return size;
|
|
}
|
|
#endregion
|
|
|
|
#region "Serialize"
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public static void SerializeDictionary<TKey, TValue>(Stream stream, Dictionary<TKey, TValue> dictionary, Action<Stream, TValue> valueAction) where TKey : struct
|
|
{
|
|
SerializeStructure<int>(stream, dictionary.Count);
|
|
|
|
foreach ((TKey key, TValue value) in dictionary)
|
|
{
|
|
SerializeStructure<TKey>(stream, key);
|
|
valueAction(stream, value);
|
|
}
|
|
}
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public static void SerializeList<T>(Stream stream, List<T> list) where T : struct
|
|
{
|
|
SerializeStructure<int>(stream, list.Count);
|
|
|
|
foreach (T item in list)
|
|
{
|
|
SerializeStructure<T>(stream, item);
|
|
}
|
|
}
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public static void SerializeStructure<T>(Stream stream, T structure) where T : struct
|
|
{
|
|
Span<T> spanT = MemoryMarshal.CreateSpan(ref structure, 1);
|
|
stream.Write(MemoryMarshal.AsBytes(spanT));
|
|
}
|
|
#endregion
|
|
|
|
#region "Extension methods"
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public static void ReadFrom<T>(this List<T[]> list, Stream stream) where T : struct
|
|
{
|
|
int count = DeserializeStructure<int>(stream);
|
|
|
|
for (int i = 0; i < count; i++)
|
|
{
|
|
int itemLength = DeserializeStructure<int>(stream);
|
|
|
|
T[] item = new T[itemLength];
|
|
|
|
int bytesCount = stream.Read(MemoryMarshal.AsBytes(item.AsSpan()));
|
|
|
|
if (bytesCount != itemLength)
|
|
{
|
|
throw new EndOfStreamException();
|
|
}
|
|
|
|
list.Add(item);
|
|
}
|
|
}
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public static long Length<T>(this List<T[]> list) where T : struct
|
|
{
|
|
long size = 0L;
|
|
|
|
size += Unsafe.SizeOf<int>();
|
|
|
|
foreach (T[] item in list)
|
|
{
|
|
size += Unsafe.SizeOf<int>();
|
|
size += item.Length;
|
|
}
|
|
|
|
return size;
|
|
}
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
public static void WriteTo<T>(this List<T[]> list, Stream stream) where T : struct
|
|
{
|
|
SerializeStructure<int>(stream, list.Count);
|
|
|
|
foreach (T[] item in list)
|
|
{
|
|
SerializeStructure<int>(stream, item.Length);
|
|
|
|
stream.Write(MemoryMarshal.AsBytes(item.AsSpan()));
|
|
}
|
|
}
|
|
#endregion
|
|
}
|
|
}
|