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 Type
    Method
    Description
    boolean
    recordComment(long address, String comment)
    Add a comment at the provided native address.
    boolean
    Add a call-to-sub at the provided native address.
  • Method Details

    • recordComment

      boolean recordComment(long address, String comment)
      Add a comment at the provided native address.
      Parameters:
      address -
      comment -
      Returns:
    • recordSupportRoutineCall

      boolean recordSupportRoutineCall(long addres, INativeMethodItem routine)
      Add a call-to-sub at the provided native address.
      Parameters:
      addres -
      routine -
      Returns: