Class PointerDataType
- All Implemented Interfaces:
BuiltInDataType,DataType,Pointer,ExtensionPoint
- Direct Known Subclasses:
Pointer16DataType,Pointer24DataType,Pointer32DataType,Pointer40DataType,Pointer48DataType,Pointer56DataType,Pointer64DataType,Pointer8DataType
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final PointerDataTypeprotected intstatic final intstatic final Stringstatic final Stringstatic final Stringstatic final Stringstatic final Stringprotected DataTypeFields inherited from class ghidra.program.model.data.DataTypeImpl
defaultSettingsFields inherited from class ghidra.program.model.data.AbstractDataType
categoryPath, dataMgr, nameFields inherited from interface ghidra.program.model.data.DataType
CONFLICT_SUFFIX, DEFAULT, NO_LAST_CHANGE_TIME, NO_SOURCE_SYNC_TIME, TYPEDEF_ATTRIBUTE_PREFIX, TYPEDEF_ATTRIBUTE_SUFFIX, VOID -
Constructor Summary
ConstructorsConstructorDescriptionCreates a dynamically-sized default pointer data type.PointerDataType(DataType referencedDataType) Construct a dynamically-sized pointer to a referencedDataType A dynamic pointer size of 4-bytes will be in used, but will adapt to a data type manager's data organization when resolved.Creates a dynamically-sized default pointer data type.PointerDataType(DataType referencedDataType, int length) Construct a pointer of a specified length to a referencedDataType.PointerDataType(DataType referencedDataType, int length, DataTypeManager dtm) Construct a pointer of a specified length to a referencedDataType.PointerDataType(DataType referencedDataType, DataTypeManager dtm) Construct a dynamically-sized pointer to the given data type. -
Method Summary
Modifier and TypeMethodDescriptionfinal Pointerclone(DataTypeManager dtm) Returns an instance of this DataType using the specifiedDataTypeManagerto allow its use of the correspondingDataOrganizationwhile retaining its unique identity (seeDataType.getUniversalID()and archive association (seeDataType.getSourceArchive()) if applicable.voidInforms this datatype that the given datatype has been deleted.voiddataTypeNameChanged(DataType dt, String oldName) Informs this datatype that its name has changed from the indicated old name.voiddataTypeReplaced(DataType oldDt, DataType newDt) Informs this datatype that the given oldDT has been replaced with newDTbooleanCheck if this datatype depends on the existence of the given datatype.static AddressgetAddressValue(MemBuffer buf, int size, Settings settings) Generate an address value based upon bytes stored at the specified buf location.static AddressgetAddressValue(MemBuffer buf, int size, Settings settings, Consumer<String> errorHandler) Generate an address value based upon bytes stored at the specified buf location.static AddressgetAddressValue(MemBuffer buf, int size, AddressSpace targetSpace) Generate an address value based upon bytes stored at the specified buf location.intGet the aligned-length of this datatype as a number of 8-bit bytes.Gets the categoryPath associated with this datatypeReturns the "pointed to" dataTypeReturns the appropriate string to use as the default label prefix in the absence of any data.getDefaultLabelPrefix(MemBuffer buf, Settings settings, int len, DataTypeDisplayOptions options) Returns the appropriate string to use as the default label prefix.Get a String briefly describing this DataType.Gets the name for referring to this datatype.static StringgetLabelString(MemBuffer buf, Settings settings, int len, DataTypeDisplayOptions options) intGet the length of this DataType as a number of 8-bit bytes.getMnemonic(Settings settings) Get the mnemonic for this DataType.getName()Get the name of this datatype.static PointergetPointer(DataType dt, int pointerSize) Get a pointer data-type instance of the requested size.static PointergetPointer(DataType dt, DataTypeManager dtm) Get a pointer data-type instance with a default sizegetRepresentation(MemBuffer buf, Settings settings, int len) Get bytes from memory in a printable format for this type.Get the list of all settings definitions for this datatype that may be used for an associatedTypeDef.Returns the interpreted data value as an instance of theadvertised value class.Class<?> getValueClass(Settings settings) Get the Class of the value Object to be returned by this datatype (seeDataType.getValue(MemBuffer, Settings, int)).booleanIndicates if the length of this data-type is determined based upon theDataOrganizationobtained from the associatedDataTypeManager.booleanReturns true if this datatype has been deleted and is no longer validbooleanisEquivalent(DataType dt) Check if the given datatype is equivalent to this datatype.newPointer(DataType dt) Creates a pointer to the indicated data type.toString()Methods inherited from class ghidra.program.model.data.BuiltIn
addParent, copy, dataTypeSizeChanged, getBuiltInSettingsDefinitions, getCTypeDeclaration, getCTypeDeclaration, getCTypeDeclaration, getCTypeDeclaration, getDecompilerDisplayName, getLastChangeTime, getSettingsDefinitions, getUniversalID, removeParent, setCategoryPath, setDefaultSettings, setName, setNameAndCategoryMethods inherited from class ghidra.program.model.data.DataTypeImpl
equals, getAlignment, getDefaultSettings, getLastChangeTimeInSourceArchive, getParents, getPathName, getSourceArchive, hashCode, notifyAlignmentChanged, notifyDeleted, notifyNameChanged, notifyParents, notifyReplaced, notifySizeChanged, replaceWith, setDescription, setLastChangeTime, setLastChangeTimeInSourceArchive, setSourceArchiveMethods inherited from class ghidra.program.model.data.AbstractDataType
dataTypeAlignmentChanged, encodeRepresentation, encodeValue, getDataOrganization, getDataOrganization, getDataTypeManager, getDataTypePath, getDefaultAbbreviatedLabelPrefix, getDefaultOffcutLabelPrefix, isEncodable, isNotYetDefined, isZeroLengthMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface ghidra.program.model.data.DataType
addParent, copy, dataTypeAlignmentChanged, dataTypeSizeChanged, encodeRepresentation, encodeValue, getAlignment, getDataOrganization, getDataTypeManager, getDataTypePath, getDefaultAbbreviatedLabelPrefix, getDefaultOffcutLabelPrefix, getDefaultSettings, getLastChangeTime, getLastChangeTimeInSourceArchive, getParents, getPathName, getSettingsDefinitions, getSourceArchive, getUniversalID, isEncodable, isNotYetDefined, isZeroLength, removeParent, replaceWith, setCategoryPath, setDescription, setLastChangeTime, setLastChangeTimeInSourceArchive, setName, setNameAndCategory, setSourceArchiveMethods inherited from interface ghidra.program.model.data.Pointer
typedefBuilder
-
Field Details
-
dataType
-
MAX_POINTER_SIZE_BYTES
public static final int MAX_POINTER_SIZE_BYTES- See Also:
-
POINTER_NAME
- See Also:
-
POINTER_LABEL_PREFIX
- See Also:
-
POINTER_LABEL_PREFIX_U
- See Also:
-
POINTER_LOOP_LABEL
- See Also:
-
NOT_A_POINTER
- See Also:
-
referencedDataType
-
length
protected int length
-
-
Constructor Details
-
PointerDataType
public PointerDataType()Creates a dynamically-sized default pointer data type. A dynamic pointer size of 4-bytes will be in used, but will adapt to a data type manager's data organization when resolved. -
PointerDataType
Creates a dynamically-sized default pointer data type. The pointer size is established dynamically based upon the data organization associated with the specified dtm but can adapt to another data type manager's data organization when resolved.- Parameters:
dtm- data-type manager whose data organization should be used
-
PointerDataType
Construct a dynamically-sized pointer to a referencedDataType A dynamic pointer size of 4-bytes will be in used, but will adapt to a data type manager's data organization when resolved.- Parameters:
referencedDataType- data type this pointer points to
-
PointerDataType
Construct a pointer of a specified length to a referencedDataType. Note: It is preferred to use default sized pointers when possible (i.e., length=-1, seePointerDataType(DataType)) instead of explicitly specifying the pointer length value.- Parameters:
referencedDataType- data type this pointer points tolength- pointer length (values <= 0 will result in dynamically-sized pointer)
-
PointerDataType
Construct a dynamically-sized pointer to the given data type. The pointer size is established dynamically based upon the data organization associated with the specified dtm but can adapt to another data type manager's data organization when resolved.- Parameters:
referencedDataType- data type this pointer points todtm- data-type manager whose data organization should be used
-
PointerDataType
Construct a pointer of a specified length to a referencedDataType. Note: It is preferred to use default sized pointers when possible (i.e., length=-1, seePointerDataType(DataType, DataTypeManager)) instead of explicitly specifying the pointer length value.- Parameters:
referencedDataType- data type this pointer points tolength- pointer length (-1 will result in dynamically-sized pointer)dtm- associated data type manager whose data organization will be used
-
-
Method Details
-
clone
Description copied from interface:DataTypeReturns an instance of this DataType using the specifiedDataTypeManagerto allow its use of the correspondingDataOrganizationwhile retaining its unique identity (seeDataType.getUniversalID()and archive association (seeDataType.getSourceArchive()) if applicable.This instance will be returned if this datatype's DataTypeManager matches the specified dtm. The recursion depth of a clone will stop on any datatype whose
DataTypeManagermatches the specified dtm and simply use the existing datatype instance.NOTE: In general, this method should not be used to obtain an instance to be modified. In most cases changes may be made directly to this instance if supported or to a
DataType.copy(DataTypeManager)of this type. -
getDataType
Description copied from interface:PointerReturns the "pointed to" dataType- Specified by:
getDataTypein interfacePointer- Returns:
- referenced datatype (may be null)
-
hasLanguageDependantLength
public boolean hasLanguageDependantLength()Description copied from interface:DataTypeIndicates if the length of this data-type is determined based upon theDataOrganizationobtained from the associatedDataTypeManager.- Specified by:
hasLanguageDependantLengthin interfaceDataType- Overrides:
hasLanguageDependantLengthin classAbstractDataType- Returns:
- true length is language/compiler-specification dependent, else false
-
getLength
public int getLength()Description copied from interface:DataTypeGet the length of this DataType as a number of 8-bit bytes.For primitive datatypes this reflects the smallest varnode which can be used to contain its value (i.e., raw data length).
Example: For x86 32-bit gcc an 80-bit
long doubleraw data lengthof 10-bytes will fit within a floating point register while itsaligned-lengthof 12-bytes is used by the gcc compiler for data/array/component allocations to maintain alignment (i.e.,sizeof(long double)).NOTE: Other than the
VoidDataType, no datatype should ever return 0, even ifDataType.isZeroLength(), and onlyDynamic/FactoryDataTypedatatypes should return -1. IfDataType.isZeroLength()is true a length of 1 should be returned. Where a zero-length datatype can be handled (e.g.,Composite) theDataType.isZeroLength()method should be used. -
getAlignedLength
public int getAlignedLength()Description copied from interface:DataTypeGet the aligned-length of this datatype as a number of 8-bit bytes.For primitive datatypes this is equivalent to the C/C++ "sizeof" operation within source code and should be used when determining
Arrayelement length or component sizing for aComposite. ForPointer,CompositeandArraytypes this will return the same value asDataType.getLength().Example: For x86 32-bit gcc an 80-bit
long doubleraw data lengthof 10-bytes will fit within a floating point register while itsaligned-lengthof 12-bytes is used by the gcc compiler for data/array/component allocations to maintain alignment (i.e.,sizeof(long double)).NOTE: Other than the
VoidDataType, no datatype should ever return 0, even ifDataType.isZeroLength(), and onlyDynamic/FactoryDataType/FunctionDefinitiondatatypes should return -1. IfDataType.isZeroLength()is true a length of 1 should be returned.- Specified by:
getAlignedLengthin interfaceDataType- Overrides:
getAlignedLengthin classDataTypeImpl- Returns:
- byte length of binary encoding.
-
getDefaultLabelPrefix
Description copied from interface:DataTypeReturns the appropriate string to use as the default label prefix in the absence of any data.- Specified by:
getDefaultLabelPrefixin interfaceDataType- Overrides:
getDefaultLabelPrefixin classAbstractDataType- Returns:
- the default label prefix or null if none specified.
-
getDefaultLabelPrefix
public String getDefaultLabelPrefix(MemBuffer buf, Settings settings, int len, DataTypeDisplayOptions options) Description copied from interface:DataTypeReturns the appropriate string to use as the default label prefix.- Specified by:
getDefaultLabelPrefixin interfaceDataType- Overrides:
getDefaultLabelPrefixin classAbstractDataType- Parameters:
buf- memory buffer containing the bytes.settings- the Settings objectlen- the length of the data.options- options for how to format the default label prefix.- Returns:
- the default label prefix or null if none specified.
-
getLabelString
public static String getLabelString(MemBuffer buf, Settings settings, int len, DataTypeDisplayOptions options) -
getDisplayName
Description copied from interface:DataTypeGets the name for referring to this datatype.- Specified by:
getDisplayNamein interfaceDataType- Overrides:
getDisplayNamein classAbstractDataType- Returns:
- generic name for this Data Type (i.e.: Word)
-
getDescription
Description copied from interface:DataTypeGet a String briefly describing this DataType.- Specified by:
getDescriptionin interfaceDataType- Returns:
- a one-liner describing this DataType.
-
getMnemonic
Description copied from interface:DataTypeGet the mnemonic for this DataType.- Specified by:
getMnemonicin interfaceDataType- Overrides:
getMnemonicin classAbstractDataType- Parameters:
settings- settings which may influence the result or null- Returns:
- the mnemonic for this DataType.
-
getValue
Description copied from interface:DataTypeReturns the interpreted data value as an instance of theadvertised value class.For instance,
Pointerdata types should return an Address object (or null), or integer data types should return aScalarobject.- Specified by:
getValuein interfaceDataType- Parameters:
buf- the data buffersettings- the settings to use.len- indicates the maximum number of bytes that may be consumed by aDynamicdatatype, otherwise this value is ignored. A value of -1 may be specified to allow a Dynamic datatype to determine the length based upon the actual data bytes- Returns:
- the data object, or null if data is invalid
-
getValueClass
Description copied from interface:DataTypeGet the Class of the value Object to be returned by this datatype (seeDataType.getValue(MemBuffer, Settings, int)).- Specified by:
getValueClassin interfaceDataType- Overrides:
getValueClassin classDataTypeImpl- Parameters:
settings- the relevant settings to use or null for default.- Returns:
- Class of the value to be returned by this datatype or null if it can vary or is unspecified. Types which correspond to a string or char array will return the String class.
-
getTypeDefSettingsDefinitions
Description copied from interface:DataTypeGet the list of all settings definitions for this datatype that may be used for an associatedTypeDef. When used for an associatedTypeDef, these settings will be considered during aDataType.isEquivalent(DataType)check and will be preserved during the resolve process.- Specified by:
getTypeDefSettingsDefinitionsin interfaceDataType- Overrides:
getTypeDefSettingsDefinitionsin classAbstractDataType- Returns:
- a list of the settings definitions for a
TypeDefassociated with this datatype.
-
getAddressValue
Generate an address value based upon bytes stored at the specified buf location. Interpretation of settings may depend on access to aMemoryobject associated with the specifiedMemBufferbuf.
The following pointer-typedef settings are supported:- Parameters:
buf- memory buffer positioned to stored pointersize- pointer size in bytessettings- settings which may influence address generation- Returns:
- address value or null if unusable buf or data
-
getAddressValue
public static Address getAddressValue(MemBuffer buf, int size, Settings settings, Consumer<String> errorHandler) Generate an address value based upon bytes stored at the specified buf location. Interpretation of settings may depend on access to aMemoryobject associated with the specifiedMemBufferbuf.
The following pointer-typedef settings are supported:- Parameters:
buf- memory buffer positioned to stored pointersize- pointer size in bytessettings- settings which may influence address generationerrorHandler- if null returned an error may be conveyed to this errorHandler- Returns:
- address value or null if unusable buf or data
-
getAddressValue
Generate an address value based upon bytes stored at the specified buf location. The stored bytes will be interpreted as an unsigned byte offset into the specified targetSpace.- Parameters:
buf- memory buffer and stored pointer locationsize- pointer size in bytestargetSpace- address space for returned address- Returns:
- address value or null if unusable buf or data
-
getRepresentation
Description copied from interface:DataTypeGet bytes from memory in a printable format for this type.- Specified by:
getRepresentationin interfaceDataType- Parameters:
buf- the data.settings- the settings to use for the representation.len- the number of bytes to represent.- Returns:
- the representation of the data in this format, never null.
-
isEquivalent
Description copied from interface:DataTypeCheck if the given datatype is equivalent to this datatype.The precise meaning of "equivalent" is datatype dependent.
NOTE: if invoked by a DB object or manager it should be invoked on the DataTypeDB object passing the other datatype as the argument.- Specified by:
isEquivalentin interfaceDataType- Overrides:
isEquivalentin classBuiltIn- Parameters:
dt- the datatype being tested for equivalence.- Returns:
- true if the if the given datatype is equivalent to this datatype.
-
dataTypeDeleted
Description copied from interface:DataTypeInforms this datatype that the given datatype has been deleted.TODO: This method is reserved for internal DB use.
- Specified by:
dataTypeDeletedin interfaceDataType- Overrides:
dataTypeDeletedin classBuiltIn- Parameters:
dt- the datatype that has been deleted.
-
isDeleted
public boolean isDeleted()Description copied from interface:DataTypeReturns true if this datatype has been deleted and is no longer valid- Specified by:
isDeletedin interfaceDataType- Overrides:
isDeletedin classAbstractDataType- Returns:
- true if this datatype has been deleted and is no longer valid.
-
dataTypeReplaced
Description copied from interface:DataTypeInforms this datatype that the given oldDT has been replaced with newDTTODO: This method is reserved for internal DB use.
- Specified by:
dataTypeReplacedin interfaceDataType- Overrides:
dataTypeReplacedin classBuiltIn- Parameters:
oldDt- old datatypenewDt- new datatype
-
dataTypeNameChanged
Description copied from interface:DataTypeInforms this datatype that its name has changed from the indicated old name.TODO: This method is reserved for internal DB use.
- Specified by:
dataTypeNameChangedin interfaceDataType- Overrides:
dataTypeNameChangedin classBuiltIn- Parameters:
dt- the datatype whose name changedoldName- the datatype's old name
-
getCategoryPath
Description copied from interface:DataTypeGets the categoryPath associated with this datatype- Specified by:
getCategoryPathin interfaceDataType- Overrides:
getCategoryPathin classAbstractDataType- Returns:
- the datatype's category path
-
dependsOn
Description copied from interface:DataTypeCheck if this datatype depends on the existence of the given datatype.For example byte[] depends on byte. If byte were deleted, then byte[] would also be deleted.
-
getPointer
Get a pointer data-type instance with a default size- Parameters:
dt- data-type referenced by pointerdtm- program data-type manager (required) a generic data-type will be returned if possible.- Returns:
- signed integer data type
-
getPointer
Get a pointer data-type instance of the requested size. NOTE: The returned data-type will not be associated with any particular data-type-manager and may therefore not utilize dynamically-sized-pointers when a valid pointerSize is specified. If an invalid pointerSize is specified, a dynamically-size pointer will be returned whose length is based upon the default-data-organization.- Parameters:
dt- data-type referenced by pointerpointerSize- pointer size- Returns:
- signed integer data type
-
newPointer
Description copied from interface:PointerCreates a pointer to the indicated data type.- Specified by:
newPointerin interfacePointer- Parameters:
dt- the data type to point to.- Returns:
- the newly created pointer.
-
getName
Description copied from interface:DataTypeGet the name of this datatype.- Specified by:
getNamein interfaceDataType- Overrides:
getNamein classAbstractDataType- Returns:
- the name
-
toString
- Overrides:
toStringin classAbstractDataType
-