ROSE 0.11.145.147
|
Base class for semantics machine states.
Binary semantic analysis usually progresses one instruction at a time–one starts with an initial state and the act of processing an instruction modifies the state. The State is the base class class for the semantic states of various instruction semantic policies. It contains storage for all the machine registers and memory.
Sometimes it's useful to have a state that contains only registers or only memory. Although this class doesn't allow its register or memory state children to be null pointers, the NullSemantics class provides register and memory states that are mostly no-ops.
States must be copyable objects. Many analyses keep a copy of the machine state for each instruction or each CFG vertex.
State objects are allocated on the heap and reference counted. The BaseSemantics::State is an abstract class that defines the interface. See the Rose::BinaryAnalysis::InstructionSemantics namespace for an overview of how the parts fit together.
#include <Rose/BinaryAnalysis/InstructionSemantics/BaseSemantics/State.h>
Classes | |
class | WithFormatter |
State with formatter. More... | |
Public Types | |
using | Ptr = StatePtr |
Shared-ownership pointer. | |
Public Member Functions | |
virtual StatePtr | create (const RegisterStatePtr ®isters, const MemoryStatePtr &memory) const |
Virtual constructor. | |
virtual StatePtr | clone () const |
Virtual copy constructor. | |
SValuePtr | protoval () const |
Return the protoval. | |
virtual void | clear () |
Initialize state. | |
void | zeroRegisters () |
Initialize all registers to zero. | |
void | clearMemory () |
Clear all memory locations. | |
RegisterStatePtr | registerState () const |
Property: Register state. | |
MemoryStatePtr | memoryState () const |
Property: Memory state. | |
bool | hasInterruptState () const |
Tests whether an interrupt state is present. | |
virtual SValuePtr | readRegister (RegisterDescriptor desc, const SValuePtr &dflt, RiscOperators *ops) |
Read a value from a register. | |
virtual SValuePtr | peekRegister (RegisterDescriptor desc, const SValuePtr &dflt, RiscOperators *ops) |
Read register without side effects. | |
virtual void | writeRegister (RegisterDescriptor desc, const SValuePtr &value, RiscOperators *ops) |
Write a value to a register. | |
virtual SValuePtr | readMemory (const SValuePtr &address, const SValuePtr &dflt, RiscOperators *addrOps, RiscOperators *valOps) |
Read a value from memory. | |
virtual SValuePtr | peekMemory (const SValuePtr &address, const SValuePtr &dflt, RiscOperators *addrOps, RiscOperators *valOps) |
Read from memory without side effects. | |
virtual void | writeMemory (const SValuePtr &addr, const SValuePtr &value, RiscOperators *addrOps, RiscOperators *valOps) |
Write a value to memory. | |
virtual SValuePtr | readInterrupt (unsigned major, unsigned minor, const SValuePtr &dflt, RiscOperators *valOps) |
Read an interrupt state. | |
virtual SValuePtr | peekInterrupt (unsigned major, unsigned minor, const SValuePtr &dflt, RiscOperators *valOps) |
Read an interrupt state without side effects. | |
virtual bool | writeInterrupt (unsigned major, unsigned minor, const SValuePtr &value, RiscOperators *valOps) |
Write an interrupt state. | |
SValuePtr | raiseInterrupt (unsigned major, unsigned minor, RiscOperators *valOps) |
Raise an interrupt. | |
SValuePtr | clearInterrupt (unsigned major, unsigned minor, RiscOperators *valOps) |
Clear an interrupt. | |
bool | isInterruptDefinitelyRaised (unsigned major, unsigned minor, RiscOperators *valOps) |
Test an interrupt. | |
bool | isInterruptDefinitelyClear (unsigned major, unsigned minor, RiscOperators *valOps) |
Test an interrupt. | |
virtual void | hash (Combinatorics::Hasher &, RiscOperators *addrOps, RiscOperators *valOps) const |
Compute a hash of the state. | |
std::string | toString () const |
Convert the state to a string for debugging. | |
virtual bool | merge (const StatePtr &other, RiscOperators *ops) |
Merge operation for data flow analysis. | |
RegisterStatePtr | interruptState () const |
Property: Interrupt state. | |
void | interruptState (const RegisterStatePtr &) |
Property: Interrupt state. | |
void | printRegisters (std::ostream &stream, const std::string &prefix="") |
Print the register contents. | |
virtual void | printRegisters (std::ostream &stream, Formatter &fmt) const |
Print the register contents. | |
void | printMemory (std::ostream &stream, const std::string &prefix="") const |
Print memory contents. | |
virtual void | printMemory (std::ostream &stream, Formatter &fmt) const |
Print memory contents. | |
void | printInterrupts (std::ostream &, const std::string &prefix="") |
Print interrupt states. | |
virtual void | printInterrupts (std::ostream &stream, Formatter &fmt) const |
Print interrupt states. | |
void | print (std::ostream &stream, const std::string &prefix="") const |
Print the state. | |
virtual void | print (std::ostream &, Formatter &) const |
Print the state. | |
WithFormatter | with_format (Formatter &fmt) |
Used for printing states with formatting. | |
WithFormatter | operator+ (Formatter &fmt) |
Used for printing states with formatting. | |
WithFormatter | operator+ (const std::string &linePrefix) |
Used for printing states with formatting. | |
Static Public Member Functions | |
static StatePtr | instance (const RegisterStatePtr ®isters, const MemoryStatePtr &memory, const RegisterStatePtr &interrupts) |
Instantiate a new state object with specified register, memory, and interrupt states. | |
static StatePtr | instance (const RegisterStatePtr ®isters, const MemoryStatePtr &memory) |
Instantiate a new state object with specified register and memory states. | |
static StatePtr | instance (const StatePtr &other) |
Instantiate a new copy of an existing state. | |
static StatePtr | promote (const StatePtr &) |
Protected Member Functions | |
State (const RegisterStatePtr ®isters, const MemoryStatePtr &memory, const RegisterStatePtr &interrupts) | |
State (const RegisterStatePtr ®isters, const MemoryStatePtr &memory) | |
State (const State &other) | |
|
virtual |
Virtual constructor.
The interruptState property will always be null.
Reimplemented in Rose::BinaryAnalysis::InstructionSemantics::PartialSymbolicSemantics::State.
|
virtual |
Virtual copy constructor.
Allocates a new state object which is a deep copy of this state. States must be copyable objects because many analyses depend on being able to make a copy of the entire semantic state at each machine instruction, at each CFG vertex, etc.
Reimplemented in Rose::BinaryAnalysis::InstructionSemantics::PartialSymbolicSemantics::State.
SValuePtr Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::protoval | ( | ) | const |
Return the protoval.
The protoval is used to construct other values via its virtual constructors.
|
virtual |
Initialize state.
The register and memory states are cleared.
void Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::zeroRegisters | ( | ) |
Initialize all registers to zero.
Calls the RegisterState::zero method. Memory is not affected.
void Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::clearMemory | ( | ) |
Clear all memory locations.
Calls the MemoryState::clear method. Registers are not affected.
RegisterStatePtr Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::registerState | ( | ) | const |
Property: Register state.
This read-only property is the register substate of this whole state.
MemoryStatePtr Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::memoryState | ( | ) | const |
Property: Memory state.
This read-only property is the memory substate of this whole state.
RegisterStatePtr Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::interruptState | ( | ) | const |
Property: Interrupt state.
The interrupt state is modeled as bit flags specifying whether the interrupt has been raised. Interrupts have concrete major and minor numbers that correspond to the RegisterDescriptor major and minor properties. It is permissible for this state to have a null interrupt state, in which case the BaseSemantics::RiscOperators do something else (such as throw an exception).
void Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::interruptState | ( | const RegisterStatePtr & | ) |
Property: Interrupt state.
The interrupt state is modeled as bit flags specifying whether the interrupt has been raised. Interrupts have concrete major and minor numbers that correspond to the RegisterDescriptor major and minor properties. It is permissible for this state to have a null interrupt state, in which case the BaseSemantics::RiscOperators do something else (such as throw an exception).
bool Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::hasInterruptState | ( | ) | const |
Tests whether an interrupt state is present.
A state may have an interrupt state (similar to the register and memory states). This function returns true if and only if the interrupt state is present.
|
virtual |
Read a value from a register.
The BaseSemantics::State::readRegister implementation simply delegates to the register state member of this state. See BaseSemantics::RiscOperators::readRegister for details.
|
virtual |
Read register without side effects.
The BaseSemantics::State::peekRegister implementation simply delegates to the register state member of this state. See BaseSemantics::RiscOperators::peekRegister for details.
|
virtual |
Write a value to a register.
The BaseSemantics::State::writeRegister implementation simply delegates to the register state member of this state. See BaseSemantics::RiscOperators::writeRegister for details.
|
virtual |
Read a value from memory.
The BaseSemantics::readMemory() implementation simply delegates to the memory state member of this state. See BaseSemantics::RiscOperators::readMemory() for details.
|
virtual |
Read from memory without side effects.
The BaseSemantics::peekMemory() implementation simply delegates to the memory state member of this state. See BaseSemantics::RiscOperators::peekMemory() for details.
|
virtual |
Write a value to memory.
The BaseSemantics::writeMemory() implementation simply delegates to the memory state member of this state. See BaseSemantics::RiscOperators::writeMemory() for details.
|
virtual |
Read an interrupt state.
The BaseSemantics::State::readInterrupt implementation delegates to the interrupt state member of this state if interrupts are present, otherwise it returns a null pointer. The default value dflt
value will be written to the interrupt state if that interrupt has no previous value. The default value and the return value (when non-null) are always Boolean values (single bits) to indicate whether that interrupt is raised.
|
virtual |
Read an interrupt state without side effects.
The BaseSemantics::State::peekInterrupt implementation delegates to the interrupt state member of this state if interrupts are present, otherwise it returns a null pointer. The default value dflt
value will be written to the interrupt state if that interrupt has no previous value. The default value and the return value (when non-null) are always Boolean values (single bits) to indicate whether that interrupt is raised.
|
virtual |
Write an interrupt state.
The BaseSemantics::State::writeInterrupt implementation delegates to the interrupt state member of this state if interrupts are present and then returns true; otherwise it returns false. The value
argument is Boolean (single bit) to indicate whether the interrupt has been raised.
SValuePtr Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::raiseInterrupt | ( | unsigned | major, |
unsigned | minor, | ||
RiscOperators * | valOps | ||
) |
Raise an interrupt.
Raises an interrupt by writing a concrete true value to the interrupt state. If this state has an interrupt sub-state then the return value is the old Boolean value for that interrupt; otherwise this function returns a null pointer.
SValuePtr Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::clearInterrupt | ( | unsigned | major, |
unsigned | minor, | ||
RiscOperators * | valOps | ||
) |
Clear an interrupt.
Clears an interrupt by writing a concrete false value to the interrupt state. If this state has an interrupt sub-state then the return value is the old Boolean value for that interrupt; otherwise this function returns a null pointer.
bool Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::isInterruptDefinitelyRaised | ( | unsigned | major, |
unsigned | minor, | ||
RiscOperators * | valOps | ||
) |
Test an interrupt.
Returns true if this state has an interrupt sub-state and the specified interrupt in that substate has a concrete true value. Returns false in all other cases.
If the caller needs to handle values other than concrete true and false (such as unknown states) then use readInterrupt or peekInterrupt instead.
bool Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::isInterruptDefinitelyClear | ( | unsigned | major, |
unsigned | minor, | ||
RiscOperators * | valOps | ||
) |
Test an interrupt.
Returns true if this state has an interrupt sub-state and the specified interrupt in that substate has a concrete false value. Returns false in all other cases.
If the caller needs to handle values other than concrete true and false (such as unknown states) then use readInterrupt or peekInterrupt instead.
|
virtual |
Compute a hash of the state.
The state hash is computed by combining the memory hash, register hash, and interrupt hash.
void Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::printRegisters | ( | std::ostream & | stream, |
const std::string & | prefix = "" |
||
) |
Print the register contents.
This method emits one line per register and contains the register name and its value.
|
virtual |
Print the register contents.
This method emits one line per register and contains the register name and its value.
void Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::printMemory | ( | std::ostream & | stream, |
const std::string & | prefix = "" |
||
) | const |
Print memory contents.
This simply calls the MemoryState::print method.
|
virtual |
Print memory contents.
This simply calls the MemoryState::print method.
void Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::printInterrupts | ( | std::ostream & | , |
const std::string & | prefix = "" |
||
) |
Print interrupt states.
This method emits one line per interrupt and contains the interrupt major and minor numbers and a Boolean expression indicating whether the interrupt is currently raised.
|
virtual |
Print interrupt states.
This method emits one line per interrupt and contains the interrupt major and minor numbers and a Boolean expression indicating whether the interrupt is currently raised.
void Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::print | ( | std::ostream & | stream, |
const std::string & | prefix = "" |
||
) | const |
Print the state.
This emits a multi-line string containing the registers and all known memory locations.
|
virtual |
Print the state.
This emits a multi-line string containing the registers and all known memory locations.
std::string Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::toString | ( | ) | const |
Convert the state to a string for debugging.
This is intended mainly for debugging so that you can easily print the state from within a debugger.
|
inline |
Used for printing states with formatting.
The usual way to use this is:
Since specifying a line prefix string for indentation purposes is such a common use case, the indentation can be given instead of a format, as in the following code that indents the prefixes each line of the expression with four spaces.
Definition at line 320 of file State.h.
Referenced by operator+().
|
inline |
Used for printing states with formatting.
The usual way to use this is:
Since specifying a line prefix string for indentation purposes is such a common use case, the indentation can be given instead of a format, as in the following code that indents the prefixes each line of the expression with four spaces.
Definition at line 321 of file State.h.
References with_format().
WithFormatter Rose::BinaryAnalysis::InstructionSemantics::BaseSemantics::State::operator+ | ( | const std::string & | linePrefix | ) |
Used for printing states with formatting.
The usual way to use this is:
Since specifying a line prefix string for indentation purposes is such a common use case, the indentation can be given instead of a format, as in the following code that indents the prefixes each line of the expression with four spaces.
|
virtual |
Merge operation for data flow analysis.
Merges the other
state into this state. Returns true if this state changed, false otherwise. This method usually isn't overridden in subclasses since all the base implementation does is invoke the merge operation on the memory state and register state.