Package ghidra.pcode.memstate
Interface MemoryFaultHandler
- All Known Implementing Classes:
EmulatorHelper
Deprecated, for removal: This API element is subject to removal in a future version.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanuninitializedRead(Address address, int size, byte[] buf, int bufOffset) Deprecated, for removal: This API element is subject to removal in a future version.An attempt has been made to read uninitialized memory at the specified address.booleanunknownAddress(Address address, boolean write) Deprecated, for removal: This API element is subject to removal in a future version.Unable to translate the specified address
-
Method Details
-
uninitializedRead
Deprecated, for removal: This API element is subject to removal in a future version.An attempt has been made to read uninitialized memory at the specified address.- Parameters:
address- uninitialized storage address (memory, register or unique)size- number of uninitialized bytesbuf- storage bufferbufOffset- read offset within buffer- Returns:
- true if data should be treated as initialized
-
unknownAddress
Deprecated, for removal: This API element is subject to removal in a future version.Unable to translate the specified address- Parameters:
address- address which failed to be translatedwrite- true if memory operation was a write vs. read- Returns:
- true if fault was handled
-