Package ghidra.app.cmd.disassemble
Class PowerPCDisassembleCommand
java.lang.Object
ghidra.framework.cmd.BackgroundCommand<Program>
ghidra.app.cmd.disassemble.DisassembleCommand
ghidra.app.cmd.disassemble.PowerPCDisassembleCommand
Command object for performing PPC disassembly when VLE instructions are supported.
-
Field Summary
Fields inherited from class ghidra.app.cmd.disassemble.DisassembleCommand
disassemblyPerformed, languageError, nonExecutableStart, startSet, unalignedStart, useDefaultRepeatPatternBehavior
-
Constructor Summary
ConstructorDescriptionPowerPCDisassembleCommand
(Address start, AddressSetView restrictedSet, boolean vleMode) Constructor for PowerPCDisassembleCommand.PowerPCDisassembleCommand
(AddressSetView startSet, AddressSetView restrictedSet, boolean vleMode) Constructor for PowerPCDisassembleCommand. -
Method Summary
Modifier and TypeMethodDescriptionboolean
applyTo
(Program program, TaskMonitor monitor) Method called when this command is to apply changes to the given domain object.getName()
Returns the name of this command.void
setInitialContext
(RegisterValue initialContextValue) Allows a specified initial context to be used at all start points.void
setSeedContext
(DisassemblerContextImpl seedContext) Allows the disassembler context to be seeded for the various disassembly start points which may be encountered using the future flow state of the specified seedContext.Methods inherited from class ghidra.app.cmd.disassemble.DisassembleCommand
doDisassembly, doDisassemblySeeds, enableCodeAnalysis, getDisassembledAddressSet, getStatusMsg
Methods inherited from class ghidra.framework.cmd.BackgroundCommand
applyTo, canCancel, dispose, hasProgress, isModal, run, setStatusMsg, taskCompleted, toString
-
Constructor Details
-
PowerPCDisassembleCommand
public PowerPCDisassembleCommand(AddressSetView startSet, AddressSetView restrictedSet, boolean vleMode) Constructor for PowerPCDisassembleCommand.- Parameters:
startSet
- set of addresses to be the start of a disassembly. The Command object will attempt to start a disassembly at each address in this set.restrictedSet
- addresses that can be disassembled. a null set implies no restrictionsvleMode
- pass true if the disassembling in PowerISA VLE Mode, otherwise normal disassembly will be performed.
-
PowerPCDisassembleCommand
Constructor for PowerPCDisassembleCommand.- Parameters:
start
- address to be the start of a disassembly.restrictedSet
- addresses that can be disassembled. a null set implies no restrictionsvleMode
- pass true if the disassembling in PowerISA VLE Mode, otherwise normal disassembly will be performed.
-
-
Method Details
-
getName
Description copied from interface:Command
Returns the name of this command. -
setSeedContext
Description copied from class:DisassembleCommand
Allows the disassembler context to be seeded for the various disassembly start points which may be encountered using the future flow state of the specified seedContext. Any initial context set via theDisassembleCommand.setInitialContext(RegisterValue)
method will take precedence when combined with any seed values. The seedContext should remain unchanged while disassembler command is actively running.- Overrides:
setSeedContext
in classDisassembleCommand
- Parameters:
seedContext
- seed context or null
-
setInitialContext
Description copied from class:DisassembleCommand
Allows a specified initial context to be used at all start points. This value will take precedence when combined with any individual seed context values specified by theDisassembleCommand.setSeedContext(DisassemblerContextImpl)
method. The defaultSeedContext should remain unchanged while disassembler command is actively running.- Overrides:
setInitialContext
in classDisassembleCommand
- Parameters:
initialContextValue
- the initial context value to set or null to clear it
-
applyTo
Description copied from class:BackgroundCommand
Method called when this command is to apply changes to the given domain object. A monitor is provided to display status information about the command as it executes in the background.- Overrides:
applyTo
in classDisassembleCommand
- Parameters:
program
- domain object that will be affected by the commandmonitor
- monitor to show progress of the command- Returns:
- true if the command applied successfully
-