Package ghidra.pcode.loadimage
Interface LoadImage
-
- All Known Subinterfaces:
MemoryLoadImage
- All Known Implementing Classes:
CompositeLoadImage
,ProgramMappedLoadImage
public interface LoadImage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]
loadFill(byte[] buf, int size, Address addr, int bufOffset, boolean generateInitializedMask)
-
-
-
Method Detail
-
loadFill
byte[] loadFill(byte[] buf, int size, Address addr, int bufOffset, boolean generateInitializedMask)
- Parameters:
ptr
-size
-addr
-bufOffset
-generateInitializedMask
- if true the function should return an initialized bit mask or null if all loaded bytes were known. If true, uninitialized memory reads should only be reflected in the mask and should not be reported via the memory fault handler.- Returns:
- initialized bit mask or null (see generateInitializedMask parameter)
- See Also:
MemoryPage
-
-