Package ghidra.program.util
Class FunctionCallingConventionFieldLocation
java.lang.Object
ghidra.program.util.ProgramLocation
ghidra.program.util.FunctionLocation
ghidra.program.util.FunctionSignatureFieldLocation
ghidra.program.util.FunctionCallingConventionFieldLocation
- All Implemented Interfaces:
Cloneable
,Comparable<ProgramLocation>
The
FunctionCallingConventionFieldLocation
class provides specific information
about the Function Calling Convention 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
ConstructorDescriptionDefault constructor needed for restoring a program location from XMLFunctionCallingConventionFieldLocation
(Program program, Address locationAddr, Address functionAddr, int charOffset, String signature) Construct a new FunctionCallingConventionFieldLocation object. -
Method Summary
Methods inherited from class ghidra.program.util.FunctionSignatureFieldLocation
equals, getSignature, hashCode, isFieldBasedPositioning, restoreState, saveState, toString
Methods inherited from class ghidra.program.util.FunctionLocation
getFunctionAddress, isValid
Methods inherited from class ghidra.program.util.ProgramLocation
clone, compareAddr, compareTo, getAddress, getByteAddress, getCharOffset, getColumn, getComponentPath, getLocation, getProgram, getRefAddress, getRow, getTranslatedCopy
-
Constructor Details
-
FunctionCallingConventionFieldLocation
public FunctionCallingConventionFieldLocation(Program program, Address locationAddr, Address functionAddr, int charOffset, String signature) Construct a new FunctionCallingConventionFieldLocation 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.
-
FunctionCallingConventionFieldLocation
public FunctionCallingConventionFieldLocation()Default constructor needed for restoring a program location from XML
-