Class MemoryDump

java.lang.Object
com.abovevacant.epitaph.core.MemoryDump

public final class MemoryDump extends Object
A dump of memory contents.
  • Field Details

    • registerName

      public final String registerName
      Name of the register this dump is associated with.
    • mappingName

      public final String mappingName
      Name of the memory mapping.
    • beginAddress

      public final long beginAddress
      Beginning address of the dump.
    • memory

      public final byte[] memory
      Raw memory contents.
    • armMteMetadata

      public final ArmMTEMetadata armMteMetadata
      ARM MTE metadata, if present.
  • Constructor Details

    • MemoryDump

      public MemoryDump(String registerName, String mappingName, long beginAddress, byte[] memory, ArmMTEMetadata armMteMetadata)