Interface IESimulationResults
public interface IESimulationResults
This object carries results of some IR simulation phase. Such objects can be provided by the
decompiler engine to decompiler extensions implementing
augmentSimulationContext. The extension can decide to add comments and support-routine calls to
the results objects. When doing so, the resulting disassembly (and related decompilations) will
be augmented to take into account those additions.-
Method Summary
Modifier and TypeMethodDescriptionbooleanrecordComment(long address, String comment) Add a comment at the provided native address.booleanrecordSupportRoutineCall(long addres, INativeMethodItem routine) Add a call-to-sub at the provided native address.
-
Method Details
-
recordComment
Add a comment at the provided native address.- Parameters:
address-comment-- Returns:
-
recordSupportRoutineCall
Add a call-to-sub at the provided native address.- Parameters:
addres-routine-- Returns:
-