|
@@ -9,6 +9,8 @@ namespace BepInEx.IL2CPP
|
|
|
{
|
|
|
public static class DetourGenerator
|
|
|
{
|
|
|
+ private static ManualLogSource logger = Logger.CreateLogSource("DetourGen");
|
|
|
+
|
|
|
public static void Disassemble(ManualLogSource logSource, IntPtr memoryPtr, int size)
|
|
|
{
|
|
|
byte[] data = new byte[size];
|
|
@@ -79,8 +81,7 @@ namespace BepInEx.IL2CPP
|
|
|
|
|
|
return trampolinePtr;
|
|
|
}
|
|
|
-
|
|
|
- private static ManualLogSource logger = Logger.CreateLogSource("detourgen");
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -110,9 +111,9 @@ namespace BepInEx.IL2CPP
|
|
|
|
|
|
|
|
|
|
|
|
- logger.LogInfo($"Got ptr with relative memory operand: {instr}");
|
|
|
+ logger.LogDebug($"Got ptr with relative memory operand: {instr}");
|
|
|
var addr = instr.IPRelativeMemoryAddress;
|
|
|
- logger.LogInfo($"Address: {addr:X}");
|
|
|
+ logger.LogDebug($"Address: {addr:X}");
|
|
|
instr.MemoryBase = Register.None;
|
|
|
var op = AssemblerRegisters.__byte_ptr[addr].ToMemoryOperand(64);
|
|
|
instr.Op0Kind = OpKind.Memory;
|
|
@@ -123,7 +124,7 @@ namespace BepInEx.IL2CPP
|
|
|
instr.MemoryDisplacement = (uint)op.Displacement;
|
|
|
instr.IsBroadcast = op.IsBroadcast;
|
|
|
instr.SegmentPrefix = op.SegmentPrefix;
|
|
|
- logger.LogInfo($"After edit: {instr}");
|
|
|
+ logger.LogDebug($"After edit: {instr}");
|
|
|
}
|
|
|
|
|
|
origInstructions.Add(instr);
|