Package ghidra.program.util
Class RegisterTransitionFieldLocation
- java.lang.Object
-
- ghidra.program.util.ProgramLocation
-
- ghidra.program.util.RegisterTransitionFieldLocation
-
- All Implemented Interfaces:
java.lang.Comparable<ProgramLocation>
public class RegisterTransitionFieldLocation extends ProgramLocation
ProgramLocation for the Register Field.
-
-
Field Summary
-
Fields inherited from class ghidra.program.util.ProgramLocation
addr, program, refAddr
-
-
Constructor Summary
Constructors Constructor Description RegisterTransitionFieldLocation()
Default constructorRegisterTransitionFieldLocation(Program program, Address addr, java.lang.String[] registerNames, int row, int column)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Register
getRegister()
void
restoreState(Program p, SaveState obj)
Restore this program location using the given program and save state object.void
saveState(SaveState obj)
Save this program location to the given save state object.-
Methods inherited from class ghidra.program.util.ProgramLocation
compareAddr, compareTo, equals, getAddress, getByteAddress, getCharOffset, getColumn, getComponentPath, getLocation, getProgram, getRefAddress, getRow, hashCode, isValid, toString
-
-
-
-
Method Detail
-
getRegister
public Register getRegister()
-
restoreState
public void restoreState(Program p, SaveState obj)
Description copied from class:ProgramLocation
Restore this program location using the given program and save state object.- Overrides:
restoreState
in classProgramLocation
- Parameters:
p
- program to restore fromobj
- the save state to restore from
-
saveState
public void saveState(SaveState obj)
Description copied from class:ProgramLocation
Save this program location to the given save state object.- Overrides:
saveState
in classProgramLocation
- Parameters:
obj
- the save state object for saving the location
-
-