You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, each instruction is hooked and passed to capstone for disassembly and analysis of used registers for tracing.
Speed could greatly be improved by caching the results and using capstone for blocks instead of individual instructions (for example during the block hook, cached in some dictionary).
Two problems to manage:
Self-modifying code: how to efficiently check and invalidate a cached block
when to stop disassembling a block
The text was updated successfully, but these errors were encountered:
Currently, each instruction is hooked and passed to capstone for disassembly and analysis of used registers for tracing.
Speed could greatly be improved by caching the results and using capstone for blocks instead of individual instructions (for example during the block hook, cached in some dictionary).
Two problems to manage:
The text was updated successfully, but these errors were encountered: