1 Commits
Author SHA1 Message Date
ApfelTeeSaft 9aec398919 Implement "IsSelfModifying" flag 2026-01-21 18:30:40 +01:00
@@ -23,6 +23,12 @@ public class DecompiledFunction
/// </summary>
public IReadOnlyDictionary<ushort, string> JumpTargets { get; }
/// <summary>
/// Indicates that this function is expected to mutate instruction bytes at runtime and should
/// avoid JIT compilation.
/// </summary>
public bool IsSelfModifying { get; set; }
public DecompiledFunction(
ushort address,
IReadOnlyList<DisassembledInstruction> instructions,