Class AbstractDBTraceProgramViewMemory
- All Implemented Interfaces:
AddressSetView,Memory,TraceProgramViewMemory,MemoryAdapter,Iterable<AddressRange>
- Direct Known Subclasses:
DBTraceProgramViewMemory
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final ByteCacheprotected final DBTraceMemoryManagerprotected final DBTraceProgramViewFields inherited from interface ghidra.program.model.mem.Memory
GBYTE, GBYTE_SHIFT_FACTOR, MAX_BINARY_SIZE, MAX_BINARY_SIZE_GB, MAX_BLOCK_SIZE, MAX_BLOCK_SIZE_GB -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract AddressSetViewbooleanTest if the address is contained within this set.booleanTest if the given address range is contained in this set.booleancontains(AddressSetView set) Test if the given address set is a subset of this set.convertToInitialized(MemoryBlock uninitializedBlock, byte initialValue) Convert an existing uninitialized block with an initialized block.convertToUninitialized(MemoryBlock itializedBlock) Convert an existing initialized block with an uninitialized block.createBitMappedBlock(String name, Address start, Address mappedAddress, long length, boolean overlay) Create a bit-mapped overlay memory block and add it to this Memory.createBlock(MemoryBlock block, String name, Address start, long length) Creates a MemoryBlock at the given address with the same properties as block, and adds it to this Memory.createByteMappedBlock(String name, Address start, Address mappedAddress, long length, ByteMappingScheme byteMappingScheme, boolean overlay) Create a byte-mapped memory block and add it to this memory.createFileBytes(String filename, long offset, long size, InputStream is, TaskMonitor monitor) Stores a sequence of bytes into the program.createInitializedBlock(String name, Address start, long size, byte initialValue, TaskMonitor monitor, boolean overlay) Create an initialized memory block initialized and add it to this Memory.createInitializedBlock(String name, Address start, FileBytes fileBytes, long offset, long size, boolean overlay) Create an initialized memory block using bytes from aFileBytesobject.createInitializedBlock(String name, Address start, InputStream is, long length, TaskMonitor monitor, boolean overlay) Create an initialized memory block based upon a dataInputStreamand add it to this Memory.createUninitializedBlock(String name, Address start, long size, boolean overlay) Create an uninitialized memory block and add it to this Memory.booleandeleteFileBytes(FileBytes fileBytes) Deletes a stored sequence of file bytes.findBytes(Address addr, byte[] bytes, byte[] masks, boolean forward, TaskMonitor monitor) Finds a sequence of contiguous bytes that match the given byte array at all bit positions where the mask contains an "on" bit.findBytes(Address startAddr, Address endAddr, byte[] bytes, byte[] masks, boolean forward, TaskMonitor monitor) Finds a sequence of contiguous bytes that match the given byte array at all bit positions where the mask contains an "on" bit.Finds the first address in this collection that is also in the given addressSet.getAddresses(boolean forward) Returns an iterator over all addresses in this set.getAddresses(Address start, boolean forward) Returns an iterator over the addresses in this address set starting at the start addressgetAddressRanges(boolean forward) Returns an iterator over the ranges in the specified ordergetAddressRanges(Address start, boolean forward) Returns an iterator of address ranges starting with the range that contains the given address.getAddressSourceInfo(Address address) Returns information (AddressSourceInfo) about the byte source at the given address.Returns a list of all the stored original file bytes objectsReturns the set of addresses which correspond to all memory blocks that have initialized data..byteGet byte at addr.intGet size number of bytes starting at the given address and populates dest starting at dIndex.Returns the first range in this set or null if the set is emptyReturns the set of addresses which correspond to all the "loaded" memory blocks that have initialized data..Returns the last range in this set or null if the set is emptyReturns the set of addresses which correspond to all the "loaded" memory blocks that have initialized data..Get the maximum address for this address set.Get the minimum address for this address set.longintprotected AddressSetViewReturns the program that this memory belongs to.getRangeContaining(Address address) Returns the range that contains the given addresslonggetSize()Returns the memory size in bytes.longgetSnap()getTrace()booleanReturns true if the given address set contains the same set of addresses as this set.intersect(AddressSetView view) Computes the intersection of this address set with the given address set.intersectRange(Address start, Address end) Computes the intersection of this address set with the given address range.booleanintersects(Address start, Address end) Determine if the start and end range intersects with the specified address set.booleanintersects(AddressSetView addrSet) Determine if this address set intersects with the specified address set.protected voidbooleanReturns true if the memory is bigEndian, false otherwise.booleanisEmpty()booleaniterator()Returns an iterator over the address ranges in this address set.iterator(boolean forward) Returns an iterator over the ranges in the specified orderReturns an iterator of address ranges starting with the range that contains the given address.join(MemoryBlock blockOne, MemoryBlock blockTwo) Join the two blocks to create a single memory block.voidmoveBlock(MemoryBlock block, Address newStartAddr, TaskMonitor monitor) Move the memory block containing source address to the destination address.voidremoveBlock(MemoryBlock block, TaskMonitor monitor) Remove the memory block.voidWrite byte at addr.voidWrite an array of bytes.voidsetForceFullView(boolean forceFullView) voidsplit(MemoryBlock block, Address addr) Split a block at the given addr and create a new block starting at addr.subtract(AddressSetView addrSet) Computes the difference of this address set with the given address set (this - set).union(AddressSetView addrSet) Computes the union of this address set with the given address set.xor(AddressSetView addrSet) Computes the exclusive-or of this address set with the given set.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface ghidra.program.model.address.AddressSetView
getAddressCountBefore, spliterator, spliterator, spliterator, stream, stream, streamMethods inherited from interface ghidra.program.model.mem.Memory
createByteMappedBlock, getBlock, getBlock, getBlocks, getExecuteSet, isExternalBlockAddress, locateAddressesForFileBytesOffset, locateAddressesForFileOffset
-
Field Details
-
program
-
memoryManager
-
cache
-
-
Constructor Details
-
AbstractDBTraceProgramViewMemory
-
-
Method Details
-
computeAddressSet
-
invalidateAddressSet
protected void invalidateAddressSet() -
getOrComputeAddressSet
-
setForceFullView
public void setForceFullView(boolean forceFullView) - Specified by:
setForceFullViewin interfaceTraceProgramViewMemory
-
isForceFullView
public boolean isForceFullView()- Specified by:
isForceFullViewin interfaceTraceProgramViewMemory
-
getProgram
Description copied from interface:MemoryReturns the program that this memory belongs to.- Specified by:
getProgramin interfaceMemory- Specified by:
getProgramin interfaceTraceProgramViewMemory- Returns:
- the program that this memory belongs to
-
getTrace
-
getSnap
public long getSnap() -
getLoadedAndInitializedAddressSet
Description copied from interface:MemoryReturns the set of addresses which correspond to all the "loaded" memory blocks that have initialized data.. This does not include initialized memory blocks that contain data from the program's file header such as debug sections.- Specified by:
getLoadedAndInitializedAddressSetin interfaceMemory- Returns:
- the set of addresses which correspond to all the "loaded" memory blocks that have initialized data.
-
getAllInitializedAddressSet
Description copied from interface:MemoryReturns the set of addresses which correspond to all memory blocks that have initialized data.. This includes initialized memory blocks that contain data from the program's file header that are not actually in the running in memory image, such as debug sections. UseMemory.getLoadedAndInitializedAddressSet()if you only want the addressed of the loaded in memory blocks.- Specified by:
getAllInitializedAddressSetin interfaceMemory- Returns:
- the set of addresses which correspond to all memory blocks that have initialized data.
-
getInitializedAddressSet
Description copied from interface:MemoryReturns the set of addresses which correspond to all the "loaded" memory blocks that have initialized data.. This does not include initialized memory blocks that contain data from the program's file header such as debug sections.- Specified by:
getInitializedAddressSetin interfaceMemory- Returns:
- the set of addresses which correspond to all the "loaded" memory blocks that have initialized data.
-
isBigEndian
public boolean isBigEndian()Description copied from interface:MemoryReturns true if the memory is bigEndian, false otherwise.- Specified by:
isBigEndianin interfaceMemory- Returns:
- true if the memory is bigEndian, false otherwise
-
createInitializedBlock
public MemoryBlock createInitializedBlock(String name, Address start, InputStream is, long length, TaskMonitor monitor, boolean overlay) throws LockException, MemoryConflictException, AddressOverflowException, CancelledException Description copied from interface:MemoryCreate an initialized memory block based upon a dataInputStreamand add it to this Memory.Overlay Blocks: An overlay memory block may be created in two ways:
- Specifying a
startaddress within an existing overlay address space (overlayparameter is ignored), or - Specifying a
startaddress within a physical memory address space and passingoverlay=true. This use case will force the creation of a new unique overlay address space.
- Specified by:
createInitializedBlockin interfaceMemory- Parameters:
name- block name (SeeMemory.isValidMemoryBlockName(String)for naming rules)start- start address of the blockis- source of the data used to fill the block or null for zero initialization.length- the size of the blockmonitor- task monitoroverlay- if true, the block will be created as an OVERLAY block. If thestartaddress is a non-overlay memory address a new overlay address space will be created and the block will have a starting address at the same offset within the new overlay space. If the specifiedstartaddress is an overlay address an overlay block will be created at that overlay address.- Returns:
- new Initialized Memory Block
- Throws:
LockException- if exclusive lock not in place (see haveLock())MemoryConflictException- if the new block overlaps with a previous blockAddressOverflowException- if block specification exceeds bounds of address spaceCancelledException- user cancelled operation
- Specifying a
-
createInitializedBlock
public MemoryBlock createInitializedBlock(String name, Address start, FileBytes fileBytes, long offset, long size, boolean overlay) throws LockException, MemoryConflictException, AddressOverflowException Description copied from interface:MemoryCreate an initialized memory block using bytes from aFileBytesobject.Overlay Blocks: An overlay memory block may be created in two ways:
- Specifying a
startaddress within an existing overlay address space (overlayparameter is ignored), or - Specifying a
startaddress within a physical memory address space and passingoverlay=true. This use case will force the creation of a new unique overlay address space.
- Specified by:
createInitializedBlockin interfaceMemory- Parameters:
name- block name (SeeMemory.isValidMemoryBlockName(String)for naming rules)start- starting address of the blockfileBytes- theFileBytesobject to use as the underlying source of bytes.offset- the offset into the FileBytes for the first byte of this memory block.size- block length (positive non-zero value required)overlay- if true, the block will be created as an OVERLAY block. If thestartaddress is a non-overlay memory address a new overlay address space will be created and the block will have a starting address at the same offset within the new overlay space. If the specifiedstartaddress is an overlay address an overlay block will be created at that overlay address.- Returns:
- new Initialized Memory Block
- Throws:
LockException- if exclusive lock not in place (see haveLock())MemoryConflictException- if the new block overlaps with a previous blockAddressOverflowException- if block specification exceeds bounds of address space
- Specifying a
-
createInitializedBlock
public MemoryBlock createInitializedBlock(String name, Address start, long size, byte initialValue, TaskMonitor monitor, boolean overlay) throws LockException, MemoryConflictException, AddressOverflowException, CancelledException Description copied from interface:MemoryCreate an initialized memory block initialized and add it to this Memory. All bytes will be initialized to the specified value (NOTE: use of zero as the initial value is encouraged for reduced storage).Overlay Blocks: An overlay memory block may be created in two ways:
- Specifying a
startaddress within an existing overlay address space (overlayparameter is ignored), or - Specifying a
startaddress within a physical memory address space and passingoverlay=true. This use case will force the creation of a new unique overlay address space.
- Specified by:
createInitializedBlockin interfaceMemory- Parameters:
name- block name (SeeMemory.isValidMemoryBlockName(String)for naming rules)start- start of the blocksize- block length (positive non-zero value required)initialValue- initialization value for every byte in the block.monitor- progress monitor, may be null.overlay- if true, the block will be created as an OVERLAY block. If thestartaddress is a non-overlay memory address a new overlay address space will be created and the block will have a starting address at the same offset within the new overlay space. If the specifiedstartaddress is an overlay address an overlay block will be created at that overlay address.- Returns:
- new Initialized Memory Block
- Throws:
LockException- if exclusive lock not in place (see haveLock())MemoryConflictException- if the new block overlaps with a previous blockAddressOverflowException- if block specification exceeds bounds of address spaceCancelledException- user cancelled operation
- Specifying a
-
createUninitializedBlock
public MemoryBlock createUninitializedBlock(String name, Address start, long size, boolean overlay) throws LockException, MemoryConflictException, AddressOverflowException Description copied from interface:MemoryCreate an uninitialized memory block and add it to this Memory.Overlay Blocks: An overlay memory block may be created in two ways:
- Specifying a
startaddress within an existing overlay address space (overlayparameter is ignored), or - Specifying a
startaddress within a physical memory address space and passingoverlay=true. This use case will force the creation of a new unique overlay address space.
- Specified by:
createUninitializedBlockin interfaceMemory- Parameters:
name- block name (SeeMemory.isValidMemoryBlockName(String)for naming rules)start- start of the blocksize- block lengthoverlay- if true, the block will be created as an OVERLAY block. If thestartaddress is a non-overlay memory address a new overlay address space will be created and the block will have a starting address at the same offset within the new overlay space. If the specifiedstartaddress is an overlay address an overlay block will be created at that overlay address.- Returns:
- new Uninitialized Memory Block
- Throws:
LockException- if exclusive lock not in place (see haveLock())MemoryConflictException- if the new block overlaps with a previous blockAddressOverflowException- if block specification exceeds bounds of address space
- Specifying a
-
createBitMappedBlock
public MemoryBlock createBitMappedBlock(String name, Address start, Address mappedAddress, long length, boolean overlay) throws LockException, MemoryConflictException, AddressOverflowException, IllegalArgumentException Description copied from interface:MemoryCreate a bit-mapped overlay memory block and add it to this Memory. Each byte address within the resulting memory block will correspond to a single bit location within the mapped region specified bymappedAddress.Overlay Blocks: An overlay memory block may be created in two ways:
- Specifying a
startaddress within an existing overlay address space (overlayparameter is ignored), or - Specifying a
startaddress within a physical memory address space and passingoverlay=true. This use case will force the creation of a new unique overlay address space.
- Specified by:
createBitMappedBlockin interfaceMemory- Parameters:
name- block name (SeeMemory.isValidMemoryBlockName(String)for naming rules)start- start of the blockmappedAddress- start address in the source block for the beginning of this blocklength- block lengthoverlay- if true, the block will be created as an OVERLAY block. If thestartaddress is a non-overlay memory address a new overlay address space will be created and the block will have a starting address at the same offset within the new overlay space. If the specifiedstartaddress is an overlay address an overlay block will be created at that overlay address.- Returns:
- new Bit Memory Block
- Throws:
LockException- if exclusive lock not in place (see haveLock())MemoryConflictException- if the new block overlaps with a previous blockMemoryConflictException- if the new block overlaps with a previous blockAddressOverflowException- if block specification exceeds bounds of address spaceIllegalArgumentException- if invalid block name specified
- Specifying a
-
createByteMappedBlock
public MemoryBlock createByteMappedBlock(String name, Address start, Address mappedAddress, long length, ByteMappingScheme byteMappingScheme, boolean overlay) throws LockException, MemoryConflictException, AddressOverflowException, IllegalArgumentException Description copied from interface:MemoryCreate a byte-mapped memory block and add it to this memory. Each byte address within the resulting memory block will correspond to a byte within the mapped region specified bymappedAddress. While a 1:1 byte-mapping is the default, a specific byte-mapping ratio may be specified.Overlay Blocks: An overlay memory block may be created in two ways:
- Specifying a
startaddress within an existing overlay address space (overlayparameter is ignored), or - Specifying a
startaddress within a physical memory address space and passingoverlay=true. This use case will force the creation of a new unique overlay address space.
- Specified by:
createByteMappedBlockin interfaceMemory- Parameters:
name- block name (SeeMemory.isValidMemoryBlockName(String)for naming rules)start- start of the blockmappedAddress- start address in the source block for the beginning of this blocklength- block lengthbyteMappingScheme- byte mapping scheme (may be null for 1:1 mapping)overlay- if true, the block will be created as an OVERLAY block. If thestartaddress is a non-overlay memory address a new overlay address space will be created and the block will have a starting address at the same offset within the new overlay space. If the specifiedstartaddress is an overlay address an overlay block will be created at that overlay address.- Returns:
- new Bit Memory Block
- Throws:
LockException- if exclusive lock not in place (see haveLock())MemoryConflictException- if the new block overlaps with a previous blockAddressOverflowException- if block specification exceeds bounds of address spaceIllegalArgumentException- if invalid block name
- Specifying a
-
createBlock
public MemoryBlock createBlock(MemoryBlock block, String name, Address start, long length) throws LockException, MemoryConflictException, AddressOverflowException Description copied from interface:MemoryCreates a MemoryBlock at the given address with the same properties as block, and adds it to this Memory. Initialized Default blocks will have block filled with 0's. Method will only create physical space blocks and will not create an overlay block.- Specified by:
createBlockin interfaceMemory- Parameters:
block- source blockname- block name (SeeMemory.isValidMemoryBlockName(String)for naming rules).start- start of the blocklength- the size of the new block.- Returns:
- new block
- Throws:
LockException- if exclusive lock not in place (see haveLock())MemoryConflictException- if block specification conflicts with an existing blockAddressOverflowException- if block specification exceeds bounds of address space
-
removeBlock
Description copied from interface:MemoryRemove the memory block.- Specified by:
removeBlockin interfaceMemory- Parameters:
block- the block to be removed.monitor- monitor that is used to cancel the remove operation- Throws:
LockException- if exclusive lock not in place (see haveLock())
-
getSize
public long getSize()Description copied from interface:MemoryReturns the memory size in bytes. -
moveBlock
public void moveBlock(MemoryBlock block, Address newStartAddr, TaskMonitor monitor) throws LockException, MemoryBlockException, MemoryConflictException, AddressOverflowException Description copied from interface:MemoryMove the memory block containing source address to the destination address.- Specified by:
moveBlockin interfaceMemory- Parameters:
block- block to be movednewStartAddr- new start address for blockmonitor- task monitor so the move block can be canceled- Throws:
LockException- if exclusive lock not in place (see haveLock())MemoryBlockException- if block movement is not permittedMemoryConflictException- if move would cause blocks to overlap.AddressOverflowException- if block movement would violate bounds of address space
-
split
Description copied from interface:MemorySplit a block at the given addr and create a new block starting at addr.- Specified by:
splitin interfaceMemory- Parameters:
block- block to be split into twoaddr- address (within block) that will be the start of new block- Throws:
MemoryBlockException- memory split not permittedLockException- if exclusive lock not in place (see haveLock())
-
join
public MemoryBlock join(MemoryBlock blockOne, MemoryBlock blockTwo) throws LockException, MemoryBlockException Description copied from interface:MemoryJoin the two blocks to create a single memory block. IMPORTANT! When done, both blockOne and blockTwo should no longer be used.- Specified by:
joinin interfaceMemory- Parameters:
blockOne- block to be combined with blockTwoblockTwo- block to be combined with blockOne- Returns:
- new block
- Throws:
LockException- if exclusive lock not in place (see haveLock())MemoryBlockException- thrown if the blocks are not contiguous in the address space,
-
convertToInitialized
public MemoryBlock convertToInitialized(MemoryBlock uninitializedBlock, byte initialValue) throws LockException, MemoryBlockException Description copied from interface:MemoryConvert an existing uninitialized block with an initialized block.- Specified by:
convertToInitializedin interfaceMemory- Parameters:
uninitializedBlock- uninitialized block to convertinitialValue- initial value for the bytes- Returns:
- the converted block
- Throws:
LockException- if exclusive lock not in place (see haveLock())MemoryBlockException- if there is no block in memory at the same address as block or if the block lengths are not the same.
-
convertToUninitialized
public MemoryBlock convertToUninitialized(MemoryBlock itializedBlock) throws MemoryBlockException, LockException Description copied from interface:MemoryConvert an existing initialized block with an uninitialized block. Block will discard any associated memory bytes and drop source info.- Specified by:
convertToUninitializedin interfaceMemory- Parameters:
itializedBlock- uninitialized block to convert- Returns:
- the converted block
- Throws:
MemoryBlockException- if there is no block in memory at the same address as block or if the block lengths are not the same.LockException- if exclusive lock not in place (see haveLock())
-
findBytes
public Address findBytes(Address addr, byte[] bytes, byte[] masks, boolean forward, TaskMonitor monitor) Description copied from interface:MemoryFinds a sequence of contiguous bytes that match the given byte array at all bit positions where the mask contains an "on" bit. Search is performed over loaded memory only.- Specified by:
findBytesin interfaceMemory- Parameters:
addr- The beginning address in memory to search.bytes- the array of bytes to search for.masks- the array of masks. (One for each byte in the byte array) if all bits of each byte is to be checked (ie: all mask bytes are 0xff), then pass a null for masks.forward- if true, search in the forward direction.monitor- the monitor- Returns:
- The address of where the first match is found. Null is returned if there is no match.
-
findBytes
public Address findBytes(Address startAddr, Address endAddr, byte[] bytes, byte[] masks, boolean forward, TaskMonitor monitor) Description copied from interface:MemoryFinds a sequence of contiguous bytes that match the given byte array at all bit positions where the mask contains an "on" bit. Starts at startAddr and ends at endAddr. If forward is true, search starts at startAddr and will end if startAddr ">" endAddr. If forward is false, search starts at start addr and will end if startAddr "<" endAddr.- Specified by:
findBytesin interfaceMemory- Parameters:
startAddr- The beginning address in memory to search.endAddr- The ending address in memory to search (inclusive).bytes- the array of bytes to search for.masks- the array of masks. (One for each byte in the byte array) if all bits of each byte is to be checked (ie: all mask bytes are 0xff), then pass a null for masks.forward- if true, search in the forward direction.monitor- the monitor- Returns:
- The address of where the first match is found. Null is returned if there is no match.
-
getByte
Description copied from interface:MemoryGet byte at addr.- Specified by:
getBytein interfaceMemory- Specified by:
getBytein interfaceMemoryAdapter- Parameters:
addr- the Address of the byte.- Returns:
- the byte.
- Throws:
MemoryAccessException- if the address is not contained in any memory block.
-
getBytes
Description copied from interface:MemoryGet size number of bytes starting at the given address and populates dest starting at dIndex.- Specified by:
getBytesin interfaceMemory- Parameters:
addr- the starting Address.b- the byte array to populate.off- the offset into dest to place the bytes.len- the number of bytes to get.- Returns:
- the number of bytes put into dest. May be less than size if the requested number extends beyond initialized / available memory.
- Throws:
MemoryAccessException- if the starting address is not contained in any memory block or is an uninitialized location.
-
setByte
Description copied from interface:MemoryWrite byte at addr.- Specified by:
setBytein interfaceMemory- Specified by:
setBytein interfaceMemoryAdapter- Parameters:
addr- the Address of the byte.value- the data to write.- Throws:
MemoryAccessException- if writing is not allowed.
-
setBytes
public void setBytes(Address addr, byte[] source, int sIndex, int size) throws MemoryAccessException Description copied from interface:MemoryWrite an array of bytes. This should copy size bytes or fail!- Specified by:
setBytesin interfaceMemory- Parameters:
addr- the starting Address of the bytes.source- an array to get bytes from.sIndex- the starting source index.size- the number of bytes to fill.- Throws:
MemoryAccessException- if writing is not allowed.
-
createFileBytes
public FileBytes createFileBytes(String filename, long offset, long size, InputStream is, TaskMonitor monitor) throws IOException, CancelledException Description copied from interface:MemoryStores a sequence of bytes into the program. Typically, this method is used by importers to store the original raw program bytes.- Specified by:
createFileBytesin interfaceMemory- Parameters:
filename- the name of the file from where the bytes originatedoffset- the offset into the file for the first byte in the input stream.size- the number of bytes to store from the input stream.is- the input stream that will supply the bytes to store in the program. Caller is responsible for closing input stream upon return.monitor- task monitor- Returns:
- a FileBytes that was created to access the bytes.
- Throws:
IOException- if there was an IOException saving the bytes to the program database.CancelledException- if the user cancelled this operation. Note: the database will be stable, but the buffers may contain 0s instead of the actual bytes.
-
getAllFileBytes
Description copied from interface:MemoryReturns a list of all the stored original file bytes objects- Specified by:
getAllFileBytesin interfaceMemory- Returns:
- a list of all the stored original file bytes objects
-
getAddressSourceInfo
Description copied from interface:MemoryReturns information (AddressSourceInfo) about the byte source at the given address.- Specified by:
getAddressSourceInfoin interfaceMemory- Parameters:
address- the address to query. Returns null if the address is not in memory.- Returns:
- information (
AddressSourceInfo) about the byte source at the given address or null if the address is not in memory.
-
deleteFileBytes
Description copied from interface:MemoryDeletes a stored sequence of file bytes. The file bytes can only be deleted if there are no memory block references to the file bytes.- Specified by:
deleteFileBytesin interfaceMemory- Parameters:
fileBytes- the FileBytes for the file bytes to be deleted.- Returns:
- true if the FileBytes was deleted. If any memory blocks are referenced by this FileBytes or it is invalid then it will not be deleted and false will be returned.
- Throws:
IOException- if there was an error updating the database.
-
contains
Description copied from interface:AddressSetViewTest if the address is contained within this set.- Specified by:
containsin interfaceAddressSetView- Parameters:
addr- address to test.- Returns:
- true if addr exists in the set, false otherwise.
-
contains
Description copied from interface:AddressSetViewTest if the given address range is contained in this set.The specified start and end addresses must form a valid range within a single
AddressSpace.- Specified by:
containsin interfaceAddressSetView- Parameters:
start- the first address in the range.end- the last address in the range.- Returns:
- true if entire range is contained within the set, false otherwise.
-
contains
Description copied from interface:AddressSetViewTest if the given address set is a subset of this set.- Specified by:
containsin interfaceAddressSetView- Parameters:
set- the set to test.- Returns:
- true if the entire set is contained within this set, false otherwise.
-
isEmpty
public boolean isEmpty()- Specified by:
isEmptyin interfaceAddressSetView- Returns:
- true if this set is empty.
-
getMinAddress
Description copied from interface:AddressSetViewGet the minimum address for this address set.NOTE: An
AddressRangeshould generally not be formed using this address andAddressSetView.getMaxAddress()since it may span multipleAddressSpaces.- Specified by:
getMinAddressin interfaceAddressSetView- Returns:
- the minimum address for this set. Returns null if the set is empty.
-
getMaxAddress
Description copied from interface:AddressSetViewGet the maximum address for this address set.NOTE: An
AddressRangeshould generally not be formed using this address andAddressSetView.getMaxAddress()since it may span multipleAddressSpaces.- Specified by:
getMaxAddressin interfaceAddressSetView- Returns:
- the maximum address for this set. Returns null if the set is empty.
-
getNumAddressRanges
public int getNumAddressRanges()- Specified by:
getNumAddressRangesin interfaceAddressSetView- Returns:
- the number of address ranges in this set.
-
getAddressRanges
- Specified by:
getAddressRangesin interfaceAddressSetView- Returns:
- an iterator over the address ranges in this address set.
-
getAddressRanges
Description copied from interface:AddressSetViewReturns an iterator over the ranges in the specified order- Specified by:
getAddressRangesin interfaceAddressSetView- Parameters:
forward- the ranges are returned from lowest to highest, otherwise from highest to lowest- Returns:
- an iterator over all the addresse ranges in the set.
-
getAddressRanges
Description copied from interface:AddressSetViewReturns an iterator of address ranges starting with the range that contains the given address.If there is no range containing the start address, then the first range will be the next range greater than the start address if going forward, otherwise the range less than the start address
- Specified by:
getAddressRangesin interfaceAddressSetView- Parameters:
start- the address the first range should contain.forward- true iterators forward, false backwards- Returns:
- the AddressRange iterator
-
iterator
Description copied from interface:AddressSetViewReturns an iterator over the address ranges in this address set.- Specified by:
iteratorin interfaceAddressSetView- Specified by:
iteratorin interfaceIterable<AddressRange>
-
iterator
Description copied from interface:AddressSetViewReturns an iterator over the ranges in the specified order- Specified by:
iteratorin interfaceAddressSetView- Parameters:
forward- the ranges are returned from lowest to highest, otherwise from highest to lowest- Returns:
- an iterator over all the address ranges in the set.
-
iterator
Description copied from interface:AddressSetViewReturns an iterator of address ranges starting with the range that contains the given address.If there is no range containing the start address, then the first range will be the next range greater than the start address if going forward, otherwise the range less than the start address
- Specified by:
iteratorin interfaceAddressSetView- Parameters:
start- the address that the first range should contain.forward- true iterators forward, false backwards- Returns:
- the AddressRange iterator
-
getNumAddresses
public long getNumAddresses()- Specified by:
getNumAddressesin interfaceAddressSetView- Returns:
- the number of addresses in this set.
-
getAddresses
Description copied from interface:AddressSetViewReturns an iterator over all addresses in this set.- Specified by:
getAddressesin interfaceAddressSetView- Parameters:
forward- if true the address are return in increasing order, otherwise in decreasing order.- Returns:
- an iterator over all addresses in this set.
-
getAddresses
Description copied from interface:AddressSetViewReturns an iterator over the addresses in this address set starting at the start address- Specified by:
getAddressesin interfaceAddressSetView- Parameters:
start- address to start iterating at in the address setforward- if true address are return from lowest to highest, else from highest to lowest- Returns:
- an iterator over the addresses in this address set starting at the start address
-
intersects
Description copied from interface:AddressSetViewDetermine if this address set intersects with the specified address set.- Specified by:
intersectsin interfaceAddressSetView- Parameters:
addrSet- address set to check intersection with.- Returns:
- true if this set intersects the specified addrSet else false
-
intersects
Description copied from interface:AddressSetViewDetermine if the start and end range intersects with the specified address set.The specified start and end addresses must form a valid range within a single
AddressSpace.- Specified by:
intersectsin interfaceAddressSetView- Parameters:
start- start of rangeend- end of range- Returns:
- true if the given range intersects this address set.
-
intersect
Description copied from interface:AddressSetViewComputes the intersection of this address set with the given address set.This method does not modify this address set.
- Specified by:
intersectin interfaceAddressSetView- Parameters:
view- the address set to intersect with.- Returns:
- AddressSet a new address set that contains all addresses that are contained in both this set and the given set.
-
intersectRange
Description copied from interface:AddressSetViewComputes the intersection of this address set with the given address range.This method does not modify this address set. The specified start and end addresses must form a valid range within a single
AddressSpace.- Specified by:
intersectRangein interfaceAddressSetView- Parameters:
start- start of rangeend- end of range- Returns:
- AddressSet a new address set that contains all addresses that are contained in both this set and the given range.
-
union
Description copied from interface:AddressSetViewComputes the union of this address set with the given address set.This method does not change this address set.
- Specified by:
unionin interfaceAddressSetView- Parameters:
addrSet- The address set to be unioned with this address set.- Returns:
- AddressSet A new address set which contains all the addresses from both this set and the given set.
-
subtract
Description copied from interface:AddressSetViewComputes the difference of this address set with the given address set (this - set).Note that this is not the same as (set - this). This method does not change this address set.
- Specified by:
subtractin interfaceAddressSetView- Parameters:
addrSet- the set to subtract from this set.- Returns:
- AddressSet a new address set which contains all the addresses that are in this set, but not in the given set.
-
xor
Description copied from interface:AddressSetViewComputes the exclusive-or of this address set with the given set.This method does not modify this address set.
- Specified by:
xorin interfaceAddressSetView- Parameters:
addrSet- address set to exclusive-or with.- Returns:
- AddressSet a new address set containing all addresses that are in either this set or the given set, but not in both sets
-
hasSameAddresses
Description copied from interface:AddressSetViewReturns true if the given address set contains the same set of addresses as this set.- Specified by:
hasSameAddressesin interfaceAddressSetView- Parameters:
view- the address set to compare.- Returns:
- true if the given set contains the same addresses as this set.
-
getFirstRange
Description copied from interface:AddressSetViewReturns the first range in this set or null if the set is empty- Specified by:
getFirstRangein interfaceAddressSetView- Returns:
- the first range in this set or null if the set is empty
-
getLastRange
Description copied from interface:AddressSetViewReturns the last range in this set or null if the set is empty- Specified by:
getLastRangein interfaceAddressSetView- Returns:
- the last range in this set or null if the set is empty
-
getRangeContaining
Description copied from interface:AddressSetViewReturns the range that contains the given address- Specified by:
getRangeContainingin interfaceAddressSetView- Parameters:
address- the address for which to find a range.- Returns:
- the range that contains the given address.
-
findFirstAddressInCommon
Description copied from interface:AddressSetViewFinds the first address in this collection that is also in the given addressSet.- Specified by:
findFirstAddressInCommonin interfaceAddressSetView- Parameters:
set- the addressSet to search for the first (lowest) common address.- Returns:
- the first address that is contained in this set and the given set.
-