Package ghidra.pcode.exec
Class DebuggerPcodeUtils.WatchValuePcodeExecutorStatePiece
java.lang.Object
ghidra.pcode.exec.DebuggerPcodeUtils.WatchValuePcodeExecutorStatePiece
- All Implemented Interfaces:
PcodeExecutorStatePiece<byte[],DebuggerPcodeUtils.WatchValue>
- Enclosing class:
DebuggerPcodeUtils
public static class DebuggerPcodeUtils.WatchValuePcodeExecutorStatePiece
extends Object
implements PcodeExecutorStatePiece<byte[],DebuggerPcodeUtils.WatchValue>
-
Nested Class Summary
Nested classes/interfaces inherited from interface ghidra.pcode.exec.PcodeExecutorStatePiece
PcodeExecutorStatePiece.Reason -
Constructor Summary
ConstructorsConstructorDescriptionWatchValuePcodeExecutorStatePiece(PcodeExecutorStatePiece<byte[], byte[]> bytesPiece, PcodeExecutorStatePiece<byte[], TraceMemoryState> statePiece, PcodeExecutorStatePiece<byte[], ValueLocation> locationPiece, PcodeExecutorStatePiece<byte[], AddressSetView> readsPiece) -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Erase the entire state or pieceCreate a deep copy of this statePcodeArithmetic<byte[]> Get the arithmetic used to manipulate addresses of the type used by this stateGet the arithmetic used to manipulate values of the type stored by this stategetConcreteBuffer(Address address, PcodeArithmetic.Purpose purpose) Bind a buffer of concrete bytes at the given start addressGet the language defining the address spaces of this state pieceGet all register values known to this stategetVar(AddressSpace space, byte[] offset, int size, boolean quantize, PcodeExecutorStatePiece.Reason reason) Get the value of a variablegetVarInternal(AddressSpace space, byte[] offset, int size, PcodeExecutorStatePiece.Reason reason) Get the value of a variable without issuing callbacksvoidsetVar(AddressSpace space, byte[] offset, int size, boolean quantize, DebuggerPcodeUtils.WatchValue val) Set the value of a variablevoidsetVarInternal(AddressSpace space, byte[] offset, int size, DebuggerPcodeUtils.WatchValue val) Set the value of a variable without issuing callbacksStream over the pieces within.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface ghidra.pcode.exec.PcodeExecutorStatePiece
checkRange, getNextEntryInternal, getNextEntryInternal, getVar, getVar, getVar, getVar, getVarInternal, inspectBigInteger, inspectByte, inspectConcrete, inspectInt, inspectLong, inspectRegisterValue, inspectShort, quantizeOffset, setBigInteger, setByte, setConcrete, setInt, setLong, setRegisterValue, setRegisterValue, setShort, setVar, setVar, setVar, setVar, setVarInternal
-
Constructor Details
-
WatchValuePcodeExecutorStatePiece
public WatchValuePcodeExecutorStatePiece(PcodeExecutorStatePiece<byte[], byte[]> bytesPiece, PcodeExecutorStatePiece<byte[], TraceMemoryState> statePiece, PcodeExecutorStatePiece<byte[], ValueLocation> locationPiece, PcodeExecutorStatePiece<byte[], AddressSetView> readsPiece)
-
-
Method Details
-
getLanguage
Description copied from interface:PcodeExecutorStatePieceGet the language defining the address spaces of this state piece- Specified by:
getLanguagein interfacePcodeExecutorStatePiece<byte[],DebuggerPcodeUtils.WatchValue> - Returns:
- the language
-
getAddressArithmetic
Description copied from interface:PcodeExecutorStatePieceGet the arithmetic used to manipulate addresses of the type used by this state- Specified by:
getAddressArithmeticin interfacePcodeExecutorStatePiece<byte[],DebuggerPcodeUtils.WatchValue> - Returns:
- the address (or offset) arithmetic
-
getArithmetic
Description copied from interface:PcodeExecutorStatePieceGet the arithmetic used to manipulate values of the type stored by this state- Specified by:
getArithmeticin interfacePcodeExecutorStatePiece<byte[],DebuggerPcodeUtils.WatchValue> - Returns:
- the arithmetic
-
streamPieces
Description copied from interface:PcodeExecutorStatePieceStream over the pieces within.If this piece is not a composition of others, then simply stream this piece in a singleton. Otherwise, stream the component pieces. (Do not include the composition itself, just the component pieces.)
- Specified by:
streamPiecesin interfacePcodeExecutorStatePiece<byte[],DebuggerPcodeUtils.WatchValue> - Returns:
- the stream
-
fork
Description copied from interface:PcodeExecutorStatePieceCreate a deep copy of this state- Specified by:
forkin interfacePcodeExecutorStatePiece<byte[],DebuggerPcodeUtils.WatchValue> - Parameters:
cb- callbacks to receive emulation events- Returns:
- the copy
-
setVarInternal
public void setVarInternal(AddressSpace space, byte[] offset, int size, DebuggerPcodeUtils.WatchValue val) Description copied from interface:PcodeExecutorStatePieceSet the value of a variable without issuing callbacks- Specified by:
setVarInternalin interfacePcodeExecutorStatePiece<byte[],DebuggerPcodeUtils.WatchValue> - Parameters:
space- the address spaceoffset- the offset within the spacesize- the size of the variableval- the value
-
setVar
public void setVar(AddressSpace space, byte[] offset, int size, boolean quantize, DebuggerPcodeUtils.WatchValue val) Description copied from interface:PcodeExecutorStatePieceSet the value of a variable- Specified by:
setVarin interfacePcodeExecutorStatePiece<byte[],DebuggerPcodeUtils.WatchValue> - Parameters:
space- the address spaceoffset- the offset within the spacesize- the size of the variablequantize- true to quantize to the language's "addressable unit"val- the value
-
getVar
public DebuggerPcodeUtils.WatchValue getVar(AddressSpace space, byte[] offset, int size, boolean quantize, PcodeExecutorStatePiece.Reason reason) Description copied from interface:PcodeExecutorStatePieceGet the value of a variable- Specified by:
getVarin interfacePcodeExecutorStatePiece<byte[],DebuggerPcodeUtils.WatchValue> - Parameters:
space- the address spaceoffset- the offset within the spacesize- the size of the variablequantize- true to quantize to the language's "addressable unit"reason- the reason for reading the variable- Returns:
- the value
-
getVarInternal
public DebuggerPcodeUtils.WatchValue getVarInternal(AddressSpace space, byte[] offset, int size, PcodeExecutorStatePiece.Reason reason) Description copied from interface:PcodeExecutorStatePieceGet the value of a variable without issuing callbacks- Specified by:
getVarInternalin interfacePcodeExecutorStatePiece<byte[],DebuggerPcodeUtils.WatchValue> - Parameters:
space- the address spaceoffset- the offset within the spacesize- the size of the variablereason- the reason for reading the variable- Returns:
- the value
-
getRegisterValues
Description copied from interface:PcodeExecutorStatePieceGet all register values known to this stateWhen the state acts as a cache, it should only return those cached.
- Specified by:
getRegisterValuesin interfacePcodeExecutorStatePiece<byte[],DebuggerPcodeUtils.WatchValue> - Returns:
- a map of registers and their values
-
getConcreteBuffer
Description copied from interface:PcodeExecutorStatePieceBind a buffer of concrete bytes at the given start address- Specified by:
getConcreteBufferin interfacePcodeExecutorStatePiece<byte[],DebuggerPcodeUtils.WatchValue> - Parameters:
address- the start addresspurpose- the reason why the emulator needs a concrete value- Returns:
- a buffer
-
clear
public void clear()Description copied from interface:PcodeExecutorStatePieceErase the entire state or pieceThis is generally only useful when the state is itself a cache to another object. This will ensure the state is reading from that object rather than a stale cache. If this is not a cache, this could in fact clear the whole state, and the machine using it will be left in the dark.
- Specified by:
clearin interfacePcodeExecutorStatePiece<byte[],DebuggerPcodeUtils.WatchValue>
-