Package ghidra.program.util
Class FunctionParameterFieldLocation
java.lang.Object
ghidra.program.util.ProgramLocation
ghidra.program.util.FunctionLocation
ghidra.program.util.FunctionSignatureFieldLocation
ghidra.program.util.FunctionParameterFieldLocation
- All Implemented Interfaces:
Cloneable,Comparable<ProgramLocation>
- Direct Known Subclasses:
FunctionParameterNameFieldLocation
-
Field Summary
Fields inherited from class ghidra.program.util.FunctionLocation
functionAddrFields inherited from class ghidra.program.util.ProgramLocation
addr, program, refAddr -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanintReturns the parameter associated with this location.voidrestoreState(Program restoreProgram, SaveState obj) Restore this function location using the given program and save state object.voidSave this function location to the given save state object.toString()Returns a String representation of this location.Methods inherited from class ghidra.program.util.FunctionSignatureFieldLocation
getSignature, hashCode, isFieldBasedPositioningMethods inherited from class ghidra.program.util.FunctionLocation
getFunctionAddress, isValidMethods inherited from class ghidra.program.util.ProgramLocation
clone, compareAddr, compareTo, getAddress, getByteAddress, getCharOffset, getColumn, getComponentPath, getLocation, getProgram, getRefAddress, getRow, getTranslatedCopy
-
Constructor Details
-
FunctionParameterFieldLocation
public FunctionParameterFieldLocation(Program program, Address locationAddr, Address functionAddr, int charOffset, String signature, Parameter parameter) Construct a new FunctionParameterFieldLocation object.- Parameters:
program- the program of the locationlocationAddr- the address of the listing location (i.e., referent code unit)functionAddr- the function addresscharOffset- the position within the function signature string for this location.signature- the function signature string at this location.parameter- the function parameter at this location.
-
FunctionParameterFieldLocation
public FunctionParameterFieldLocation()Default constructor needed for restoring a program location from XML
-
-
Method Details
-
getParameter
Returns the parameter associated with this location. This value can be null if the parameters are deleted from the function associated with the address of the parameter.- Returns:
- the parameter
-
getOrdinal
public int getOrdinal() -
equals
- Overrides:
equalsin classFunctionSignatureFieldLocation
-
toString
Returns a String representation of this location.- Overrides:
toStringin classFunctionSignatureFieldLocation
-
saveState
Description copied from class:FunctionLocationSave this function location to the given save state object.- Overrides:
saveStatein classFunctionSignatureFieldLocation- Parameters:
obj- the save state object for saving the location
-
restoreState
Description copied from class:FunctionLocationRestore this function location using the given program and save state object.- Overrides:
restoreStatein classFunctionSignatureFieldLocation- Parameters:
restoreProgram- the program containing the function locationobj- the save state object for saving the location
-