Package ghidra.test.processors.support
Interface ExecutionListener
-
- All Known Implementing Classes:
ProcessorEmulatorTestAdapter
public interface ExecutionListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidlog(PCodeTestGroup testGroup, java.lang.String msg)voidlog(PCodeTestGroup testGroup, java.lang.String msg, java.lang.Throwable t)voidlogRead(EmulatorTestRunner testRunner, Address address, int size, byte[] values)voidlogState(EmulatorTestRunner testRunner)voidlogState(EmulatorTestRunner emulatorTestRunner, Address dumpAddr, int dumpSize, int elementSize, EmulatorTestRunner.DumpFormat elementFormat, java.lang.String comment)voidlogWrite(EmulatorTestRunner testRunner, Address address, int size, byte[] values)voidstepCompleted(EmulatorTestRunner testRunner)
-
-
-
Method Detail
-
stepCompleted
void stepCompleted(EmulatorTestRunner testRunner)
-
logWrite
void logWrite(EmulatorTestRunner testRunner, Address address, int size, byte[] values)
-
logRead
void logRead(EmulatorTestRunner testRunner, Address address, int size, byte[] values)
-
logState
void logState(EmulatorTestRunner testRunner)
-
logState
void logState(EmulatorTestRunner emulatorTestRunner, Address dumpAddr, int dumpSize, int elementSize, EmulatorTestRunner.DumpFormat elementFormat, java.lang.String comment)
-
log
void log(PCodeTestGroup testGroup, java.lang.String msg)
-
log
void log(PCodeTestGroup testGroup, java.lang.String msg, java.lang.Throwable t)
-
-