Class AdaptedEmulator
- All Implemented Interfaces:
Emulator
Emulator that wraps the newer PcodeEmulator
This is a transitional utility only. It is currently used only by the pcode tests until that is
ported to use the new PcodeEmulator directly. New use cases based on p-code emulation
should use the PcodeEmulator directly. Older use cases still being actively maintained
should begin work porting to PcodeEmulator. Old use cases without active maintenance may
try this wrapper, but they will no longer compile once this adaptor is removed. At a minimum, to
update such old use cases, new Emulator(...) must be replaced by
new DefaultEmulator(...).
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionclassDeprecated, for removal: This API element is subject to removal in a future version. -
Constructor Summary
ConstructorsConstructorDescriptionAdaptedEmulator(EmulatorConfiguration config) Deprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and TypeMethodDescriptionvoidDeprecated, for removal: This API element is subject to removal in a future version.Add a filter on memory accessvoiddispose()Deprecated, for removal: This API element is subject to removal in a future version.Clean up resources used by the emulatorvoidexecuteInstruction(boolean stopAtBreakpoint, TaskMonitor monitor) Deprecated, for removal: This API element is subject to removal in a future version.Execute instruction at current addressDeprecated, for removal: This API element is subject to removal in a future version.Get the breakpoint tableDeprecated, for removal: This API element is subject to removal in a future version.Returns the current context register value.Deprecated, for removal: This API element is subject to removal in a future version.Get the low-level execution stateDeprecated, for removal: This API element is subject to removal in a future version.Get current execution address (or the address of the next instruction to be executed)ghidra.app.emulator.FilteredMemoryStateDeprecated, for removal: This API element is subject to removal in a future version.Get the memory state, modified by all installed access filtersbooleangetHalt()Deprecated, for removal: This API element is subject to removal in a future version.Check if the emulator has been haltedDeprecated, for removal: This API element is subject to removal in a future version.Get the address of the last instruction executed (or the instructed currently being executed)Deprecated, for removal: This API element is subject to removal in a future version.Get the memory statelonggetPC()Deprecated, for removal: This API element is subject to removal in a future version.Get the value of the program counterDeprecated, for removal: This API element is subject to removal in a future version.Get the name of the program counter registerprotected voidDeprecated, for removal: This API element is subject to removal in a future version.booleanDeprecated, for removal: This API element is subject to removal in a future version.booleanDeprecated, for removal: This API element is subject to removal in a future version.protected ghidra.app.emulator.AdaptedEmulator.AdaptedPcodeEmulatorDeprecated, for removal: This API element is subject to removal in a future version.voidsetContextRegisterValue(RegisterValue regValue) Deprecated, for removal: This API element is subject to removal in a future version.Sets the context register value at the current execute address.voidsetExecuteAddress(long addressableWordOffset) Deprecated, for removal: This API element is subject to removal in a future version.Set the value of the program countervoidsetHalt(boolean halt) Deprecated, for removal: This API element is subject to removal in a future version.Halt or un-halt the emulator
-
Constructor Details
-
AdaptedEmulator
Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Details
-
newPcodeEmulator
protected ghidra.app.emulator.AdaptedEmulator.AdaptedPcodeEmulator newPcodeEmulator(EmulatorConfiguration config) Deprecated, for removal: This API element is subject to removal in a future version. -
initializeRegisters
Deprecated, for removal: This API element is subject to removal in a future version. -
getPCRegisterName
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:EmulatorGet the name of the program counter register- Specified by:
getPCRegisterNamein interfaceEmulator- Returns:
- the name
-
setExecuteAddress
public void setExecuteAddress(long addressableWordOffset) Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:EmulatorSet the value of the program counter- Specified by:
setExecuteAddressin interfaceEmulator- Parameters:
addressableWordOffset- the word offset of the instruction to execute next.
-
getExecuteAddress
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:EmulatorGet current execution address (or the address of the next instruction to be executed)- Specified by:
getExecuteAddressin interfaceEmulator- Returns:
- current execution address
-
getLastExecuteAddress
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:EmulatorGet the address of the last instruction executed (or the instructed currently being executed)- Specified by:
getLastExecuteAddressin interfaceEmulator- Returns:
- the address
-
getPC
public long getPC()Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:EmulatorGet the value of the program counter -
executeInstruction
public void executeInstruction(boolean stopAtBreakpoint, TaskMonitor monitor) throws CancelledException, LowlevelError, InstructionDecodeException Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:EmulatorExecute instruction at current address- Specified by:
executeInstructionin interfaceEmulator- Parameters:
stopAtBreakpoint- if true and breakpoint hits at current execution address execution will halt without executing instruction.- Throws:
CancelledException- if execution was cancelledLowlevelErrorInstructionDecodeException
-
isExecuting
public boolean isExecuting()Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
isExecutingin interfaceEmulator- Returns:
- true if emulator is busy executing an instruction
-
getEmulateExecutionState
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:EmulatorGet the low-level execution stateThis can be useful within a memory fault handler to determine if a memory read was associated with instruction parsing (i.e.,
EmulateExecutionState.INSTRUCTION_DECODE) or an actual emulated read (i.e.,EmulateExecutionState.EXECUTE).- Specified by:
getEmulateExecutionStatein interfaceEmulator- Returns:
- emulator execution state.
-
getMemState
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:EmulatorGet the memory state- Specified by:
getMemStatein interfaceEmulator- Returns:
- the state
-
addMemoryAccessFilter
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:EmulatorAdd a filter on memory access- Specified by:
addMemoryAccessFilterin interfaceEmulator- Parameters:
filter- the filter
-
getFilteredMemState
public ghidra.app.emulator.FilteredMemoryState getFilteredMemState()Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:EmulatorGet the memory state, modified by all installed access filters- Specified by:
getFilteredMemStatein interfaceEmulator- Returns:
- the state
-
setContextRegisterValue
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:EmulatorSets the context register value at the current execute address.The Emulator should not be running when this method is invoked. Only flowing context bits should be set, as non-flowing bits will be cleared prior to parsing on instruction. In addition, any future context state set by the pcode emitter will take precedence over context set using this method. This method is primarily intended to be used to establish the initial context state.
- Specified by:
setContextRegisterValuein interfaceEmulator- Parameters:
regValue- is the value to set context to
-
getContextRegisterValue
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:EmulatorReturns the current context register value.The context value returned reflects its state when the previously executed instruction was parsed/executed. The context value returned will feed into the next instruction to be parsed with its non-flowing bits cleared and any future context state merged in.
- Specified by:
getContextRegisterValuein interfaceEmulator- Returns:
- context as a RegisterValue object
-
getBreakTable
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:EmulatorGet the breakpoint table- Specified by:
getBreakTablein interfaceEmulator- Returns:
- the breakpoint table
-
isAtBreakpoint
public boolean isAtBreakpoint()Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
isAtBreakpointin interfaceEmulator- Returns:
- true if halted at a breakpoint
-
setHalt
public void setHalt(boolean halt) Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:EmulatorHalt or un-halt the emulator -
getHalt
public boolean getHalt()Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:EmulatorCheck if the emulator has been halted -
dispose
public void dispose()Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:EmulatorClean up resources used by the emulator
-