|
@@ -13,6 +13,7 @@ namespace BepInEx.IL2CPP
|
|
|
{
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
|
public const int PAGE_SIZE = 0x1000;
|
|
|
|
|
@@ -24,26 +25,40 @@ namespace BepInEx.IL2CPP
|
|
|
protected const int PAGES_PER_UNIT = ALLOCATION_UNIT / PAGE_SIZE;
|
|
|
|
|
|
private static PageAllocator instance;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
public static PageAllocator Instance => instance ??= Init();
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
public abstract IntPtr Allocate(IntPtr hint);
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
public abstract void Free(IntPtr page);
|
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
- protected static long RoundDown(long num, long unit)
|
|
|
- {
|
|
|
- return num & ~(unit - 1);
|
|
|
- }
|
|
|
-
|
|
|
- [MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
protected static long RoundUp(long num, long unit)
|
|
|
{
|
|
|
return (num + unit - 1) & ~ (unit - 1);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
- protected static bool IsInRelJmpRange(IntPtr src, IntPtr dst)
|
|
|
+ public static bool IsInRelJmpRange(IntPtr src, IntPtr dst)
|
|
|
{
|
|
|
long diff = dst.ToInt64() - src.ToInt64();
|
|
|
return int.MinValue <= diff && diff <= int.MaxValue;
|