Class AbstractPointerTypedefBuiltIn
- All Implemented Interfaces:
BuiltInDataType
,DataType
,TypeDef
,ExtensionPoint
- Direct Known Subclasses:
IBO32DataType
,IBO64DataType
AbstractPointerTypedefDataType
provides an abstract BuiltIn
datatype
implementation for a pointer-typedef datatype.-
Field Summary
Fields inherited from class ghidra.program.model.data.DataTypeImpl
defaultSettings
Fields inherited from class ghidra.program.model.data.AbstractDataType
categoryPath, dataMgr, name
Fields 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
ModifierConstructorDescriptionprotected
AbstractPointerTypedefBuiltIn
(String name, DataType referencedDataType, int pointerSize, DataTypeManager dtm) Constructs a pointer-typedef.protected
AbstractPointerTypedefBuiltIn
(String name, Pointer pointerDataType, DataTypeManager dtm) Constructs a pointer-typedef. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Check if this datatype depends on the existence of the given datatype.void
Enable auto-naming for this typedef.int
Get the aligned-length of this datatype as a number of 8-bit bytes.Returns the non-typedef dataType that this typedef is based on, following chains of typedefs as necessary.Gets a list of all the settingsDefinitions used by this datatype.Returns the dataType that this typedef is based on.int
Get the length of this DataType as a number of 8-bit bytes.getName()
Get the name of this datatype.protected DataType
Get the referenced datatype used to construct this datatype (datatype which pointer references).getRepresentation
(MemBuffer buf, Settings settings, int length) Get bytes from memory in a printable format for this type.Get the universal ID for this datatype.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)
).protected boolean
boolean
Indicates if the length of this data-type is determined based upon theDataOrganization
obtained from the associatedDataTypeManager
.boolean
Determine if this datatype use auto-naming (e.g., seePointerTypedef
).boolean
isEquivalent
(DataType obj) Check if the given datatype is equivalent to this datatype.toString()
Methods inherited from class ghidra.program.model.data.BuiltIn
addParent, copy, dataTypeDeleted, dataTypeNameChanged, dataTypeReplaced, dataTypeSizeChanged, getCTypeDeclaration, getCTypeDeclaration, getCTypeDeclaration, getCTypeDeclaration, getDecompilerDisplayName, getLastChangeTime, getSettingsDefinitions, removeParent, setCategoryPath, setDefaultSettings, setName, setNameAndCategory
Methods 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, setSourceArchive
Methods inherited from class ghidra.program.model.data.AbstractDataType
dataTypeAlignmentChanged, encodeRepresentation, encodeValue, getCategoryPath, getDataOrganization, getDataOrganization, getDataTypeManager, getDataTypePath, getDefaultAbbreviatedLabelPrefix, getDefaultLabelPrefix, getDefaultLabelPrefix, getDefaultOffcutLabelPrefix, getDisplayName, getDocs, getMnemonic, getTypeDefSettingsDefinitions, isDeleted, isEncodable, isNotYetDefined, isZeroLength
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface ghidra.program.model.data.DataType
addParent, clone, copy, dataTypeAlignmentChanged, dataTypeDeleted, dataTypeNameChanged, dataTypeReplaced, dataTypeSizeChanged, encodeRepresentation, encodeValue, getAlignment, getCategoryPath, getDataOrganization, getDataTypeManager, getDataTypePath, getDefaultAbbreviatedLabelPrefix, getDefaultLabelPrefix, getDefaultLabelPrefix, getDefaultOffcutLabelPrefix, getDefaultSettings, getDescription, getDisplayName, getDocs, getLastChangeTime, getLastChangeTimeInSourceArchive, getMnemonic, getParents, getPathName, getSettingsDefinitions, getSourceArchive, getTypeDefSettingsDefinitions, isDeleted, isEncodable, isNotYetDefined, isZeroLength, removeParent, replaceWith, setCategoryPath, setDescription, setLastChangeTime, setLastChangeTimeInSourceArchive, setName, setNameAndCategory, setSourceArchive
Methods inherited from interface ghidra.program.model.data.TypeDef
hasSameTypeDefSettings, isPointer
-
Constructor Details
-
AbstractPointerTypedefBuiltIn
protected AbstractPointerTypedefBuiltIn(String name, DataType referencedDataType, int pointerSize, DataTypeManager dtm) Constructs a pointer-typedef. The category path will match that of the referencedDataType. Subclass may set various default settings which correspond toPointerTypeSettingsDefinition
.- Parameters:
name
- name of this pointer-typedef or null to force auto-name generation.referencedDataType
- data type this pointer points topointerSize
- pointer size in bytes or -1 for default pointer sizedtm
- data-type manager whose data organization should be used
-
AbstractPointerTypedefBuiltIn
Constructs a pointer-typedef. The category path will match that of the pointerDataType. Subclass may set various default settings which correspond toPointerTypeSettingsDefinition
.- Parameters:
name
- name of this pointer-typedef or null to force auto-name generation.pointerDataType
- associated pointer datatype (required)dtm
- data-type manager whose data organization should be used
-
-
Method Details
-
enableAutoNaming
public void enableAutoNaming()Description copied from interface:TypeDef
Enable auto-naming for this typedef. This will force naming to reflect the name of associated datatype plus an attribute list which corresponds to anyTypeDefSettingsDefinition
settings which may be set.- Specified by:
enableAutoNaming
in interfaceTypeDef
-
isAutoNamed
public boolean isAutoNamed()Description copied from interface:TypeDef
Determine if this datatype use auto-naming (e.g., seePointerTypedef
). If true, any change to associatedTypeDefSettingsDefinition
settings or naming of the pointer-referenced datatype will cause a automatic renaming of this datatype.- Specified by:
isAutoNamed
in interfaceTypeDef
- Returns:
- true if auto-named, else false.
-
getReferencedDataType
Get the referenced datatype used to construct this datatype (datatype which pointer references).- Returns:
- referenced datatype
-
getUniversalID
Description copied from interface:DataType
Get the universal ID for this datatype.This value is intended to be a unique identifier across all programs and archives. The same ID indicates that two datatypes were originally the same one. Keep in mind names, categories, and component makeup may differ and have changed since there origin.
- Specified by:
getUniversalID
in interfaceDataType
- Overrides:
getUniversalID
in classBuiltIn
- Returns:
- datatype UniversalID
-
hasGeneratedNamed
protected boolean hasGeneratedNamed() -
isEquivalent
Description copied from interface:DataType
Check 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:
isEquivalent
in interfaceDataType
- Overrides:
isEquivalent
in classBuiltIn
- Parameters:
obj
- the datatype being tested for equivalence.- Returns:
- true if the if the given datatype is equivalent to this datatype.
-
getName
Description copied from interface:DataType
Get the name of this datatype.- Specified by:
getName
in interfaceDataType
- Overrides:
getName
in classAbstractDataType
- Returns:
- the name
-
hasLanguageDependantLength
public boolean hasLanguageDependantLength()Description copied from interface:DataType
Indicates if the length of this data-type is determined based upon theDataOrganization
obtained from the associatedDataTypeManager
.- Specified by:
hasLanguageDependantLength
in interfaceDataType
- Overrides:
hasLanguageDependantLength
in classAbstractDataType
- Returns:
- true length is language/compiler-specification dependent, else false
-
getLength
public int getLength()Description copied from interface:DataType
Get 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 double
raw data length
of 10-bytes will fit within a floating point register while itsaligned-length
of 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
datatypes 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:DataType
Get 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
Array
element length or component sizing for aComposite
. ForPointer
,Composite
andArray
types this will return the same value asDataType.getLength()
.Example: For x86 32-bit gcc an 80-bit
long double
raw data length
of 10-bytes will fit within a floating point register while itsaligned-length
of 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
/FunctionDefinition
datatypes should return -1. IfDataType.isZeroLength()
is true a length of 1 should be returned.- Specified by:
getAlignedLength
in interfaceDataType
- Overrides:
getAlignedLength
in classDataTypeImpl
- Returns:
- byte length of binary encoding.
-
getDataType
Description copied from interface:TypeDef
Returns the dataType that this typedef is based on. This could be another typedef- Specified by:
getDataType
in interfaceTypeDef
- Returns:
- the datatype which this typedef is based on (may be another
TypeDef
).
-
getBaseDataType
Description copied from interface:TypeDef
Returns the non-typedef dataType that this typedef is based on, following chains of typedefs as necessary.- Specified by:
getBaseDataType
in interfaceTypeDef
- Returns:
- the datatype which this typedef is based on (will not be another
TypeDef
).
-
getBuiltInSettingsDefinitions
Description copied from class:BuiltIn
Gets a list of all the settingsDefinitions used by this datatype.- Overrides:
getBuiltInSettingsDefinitions
in classBuiltIn
- Returns:
- a list of the settingsDefinitions used by this datatype.
-
dependsOn
Description copied from interface:DataType
Check 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.
-
toString
- Overrides:
toString
in classAbstractDataType
-
getValueClass
Description copied from interface:DataType
Get the Class of the value Object to be returned by this datatype (seeDataType.getValue(MemBuffer, Settings, int)
).- Specified by:
getValueClass
in interfaceDataType
- Overrides:
getValueClass
in 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.
-
getValue
Description copied from interface:DataType
Returns the interpreted data value as an instance of theadvertised value class
.For instance,
Pointer
data types should return an Address object (or null), or integer data types should return aScalar
object.- Specified by:
getValue
in interfaceDataType
- Parameters:
buf
- the data buffersettings
- the settings to use.length
- indicates the maximum number of bytes that may be consumed by aDynamic
datatype, 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
-
getRepresentation
Description copied from interface:DataType
Get bytes from memory in a printable format for this type.- Specified by:
getRepresentation
in interfaceDataType
- Parameters:
buf
- the data.settings
- the settings to use for the representation.length
- the number of bytes to represent.- Returns:
- the representation of the data in this format, never null.
-