Package com.abovevacant.epitaph.core
Class MemoryDump
java.lang.Object
com.abovevacant.epitaph.core.MemoryDump
A dump of memory contents.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal ArmMTEMetadataARM MTE metadata, if present.final longBeginning address of the dump.final StringName of the memory mapping.final byte[]Raw memory contents.final StringName of the register this dump is associated with. -
Constructor Summary
ConstructorsConstructorDescriptionMemoryDump(String registerName, String mappingName, long beginAddress, byte[] memory, ArmMTEMetadata armMteMetadata) -
Method Summary
-
Field Details
-
registerName
Name of the register this dump is associated with. -
mappingName
Name of the memory mapping. -
beginAddress
public final long beginAddressBeginning address of the dump. -
memory
public final byte[] memoryRaw memory contents. -
armMteMetadata
ARM MTE metadata, if present.
-
-
Constructor Details
-
MemoryDump
public MemoryDump(String registerName, String mappingName, long beginAddress, byte[] memory, ArmMTEMetadata armMteMetadata)
-