Package ghidra.program.util
Class VariableTypeFieldLocation
- java.lang.Object
-
- ghidra.program.util.ProgramLocation
-
- ghidra.program.util.FunctionLocation
-
- ghidra.program.util.VariableLocation
-
- ghidra.program.util.VariableTypeFieldLocation
-
- All Implemented Interfaces:
java.lang.Comparable<ProgramLocation>
public class VariableTypeFieldLocation extends VariableLocation
TheVariableTypeFieldLocationclass provides specific information about the variable type field within a program location.
-
-
Field Summary
-
Fields inherited from class ghidra.program.util.FunctionLocation
functionAddr
-
Fields inherited from class ghidra.program.util.ProgramLocation
addr, program, refAddr
-
-
Constructor Summary
Constructors Constructor Description VariableTypeFieldLocation()Should only be used by XML restoration.VariableTypeFieldLocation(Program program, Address locationAddr, Variable var, int charOffset)Construct a new VariableTypeFieldLocation object.VariableTypeFieldLocation(Program program, Variable var, int charOffset)Construct a new VariableTypeFieldLocation object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetType()Return the function stack variable type string at this location.inthashCode()voidrestoreState(Program p, SaveState obj)Restore this function location using the given program and save state object.voidsaveState(SaveState obj)Save this function location to the given save state object.java.lang.StringtoString()Returns a String representation of this location.-
Methods inherited from class ghidra.program.util.VariableLocation
compareTo, getVariable, isLocationFor, isParameter, isReturn, isValid
-
Methods inherited from class ghidra.program.util.FunctionLocation
getFunctionAddress
-
Methods inherited from class ghidra.program.util.ProgramLocation
compareAddr, getAddress, getByteAddress, getCharOffset, getColumn, getComponentPath, getLocation, getProgram, getRefAddress, getRow
-
-
-
-
Constructor Detail
-
VariableTypeFieldLocation
public VariableTypeFieldLocation(Program program, Address locationAddr, Variable var, int charOffset)
Construct a new VariableTypeFieldLocation object.- Parameters:
locationAddr- the address of the listing location (i.e., referent code unit)var- the variable associated with this type field location.charOffset- the position within the function name string for this location.the- program of the location
-
VariableTypeFieldLocation
public VariableTypeFieldLocation(Program program, Variable var, int charOffset)
Construct a new VariableTypeFieldLocation object. Variable function entry point is the assumed listing location (i.e., referent code unit). Care should be taken if variable corresponds to an EXTERNAL function.- Parameters:
var- the variable associated with this type field location.charOffset- the position within the function name string for this location.the- program of the location
-
VariableTypeFieldLocation
public VariableTypeFieldLocation()
Should only be used by XML restoration.
-
-
Method Detail
-
getType
public java.lang.String getType()
Return the function stack variable type string at this location.
-
toString
public java.lang.String toString()
Returns a String representation of this location.- Overrides:
toStringin classVariableLocation
-
hashCode
public int hashCode()
- Overrides:
hashCodein classProgramLocation
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classVariableLocation- See Also:
Object.equals(java.lang.Object)
-
restoreState
public void restoreState(Program p, SaveState obj)
Description copied from class:FunctionLocationRestore this function location using the given program and save state object.- Overrides:
restoreStatein classVariableLocation
-
saveState
public void saveState(SaveState obj)
Description copied from class:FunctionLocationSave this function location to the given save state object.- Overrides:
saveStatein classVariableLocation- Parameters:
obj- the save state object for saving the location
-
-