public interface

IESimulationResults

com.pnfsoftware.jeb.core.units.code.asm.decompiler.ir.IESimulationResults

Class Overview

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.

Summary

Public Methods
abstract boolean recordComment(long address, String comment)
Add a comment at the provided native address.
abstract boolean recordSupportRoutineCall(long addres, INativeMethodItem routine)
Add a call-to-sub at the provided native address.

Public Methods

public abstract boolean recordComment (long address, String comment)

Add a comment at the provided native address.

public abstract boolean recordSupportRoutineCall (long addres, INativeMethodItem routine)

Add a call-to-sub at the provided native address.