ETISS 0.8.0
Extendable Translating Instruction Set Simulator (version 0.8.0)
|
this plugin will be called before a block is executed. More...
#include <Plugin.h>
Public Member Functions | |
CoroutinePlugin () | |
virtual | ~CoroutinePlugin () |
virtual etiss::int32 | execute ()=0 |
called before a block and may act in the same way as a block | |
virtual void | executionEnd (int32_t code) |
called when the simulation ends but before any deinitialization is done | |
virtual bool | isActive () |
indicates if the plugin will do something in execution loop. | |
![]() | |
virtual | ~Plugin () |
unsigned | getType () |
InterruptListenerPlugin * | getInterruptListenerPlugin () |
CoroutinePlugin * | getCoroutinePlugin () |
SystemWrapperPlugin * | getSystemWrapperPlugin () |
RegisterDevicePlugin * | getRegisterDevicePlugin () |
TranslationPlugin * | getTranslationPlugin () |
std::string | getPluginName () const |
const std::string & | getLastAssignedCoreName () |
std::string | toString () const |
![]() | |
ToString () | |
virtual | ~ToString () |
Additional Inherited Members | |
![]() | |
static const unsigned | INTERRUPTLISTENER = 1 << 0 |
access to translated code | |
static const unsigned | COROUTINE = 1 << 1 |
callback after execution of each translated block | |
static const unsigned | SYSTEMWRAPPER = 1 << 2 |
can wrap/change ETISS_System structure at execution start | |
static const unsigned | REGISTERDEVICE |
gets noticed of changes to special registers (e.g. mmu register etc. [depends on architecture]) | |
static const unsigned | TRANSLATION |
access to translated code during translation phase or when instruction tree is built | |
![]() | |
Plugin (unsigned type=0) | |
virtual std::string | _getPluginName () const =0 |
virtual void | init (ETISS_CPU *cpu, ETISS_System *system, CPUArch *arch) |
this function is called before the plugin is used in the cpu execution loop (etiss::CPUCore::execute). | |
virtual void | cleanup () |
this function is called after cpu execution loop (etiss::CPUCore::execute) finished. | |
void | setCorrespondingCPUCoreName (std::string name) |
virtual void | addedToCPUCore (etiss::CPUCore *core) |
called as soon a plugin has been added to its CPUCore. | |
virtual void | removedFromCPUCore (etiss::CPUCore *core) |
called as soon a plugin has been removed from its CPUCore. | |
![]() | |
ETISS_CPU * | plugin_cpu_ |
holds a pointer to the cpu structure. will be set before init call and after cleanup call | |
ETISS_System * | plugin_system_ |
holds a pointer to the system structure. | |
CPUArch * | plugin_arch_ |
holds a pointer to the CPUArch instance. will be set before init call and after cleanup call | |
CPUCore * | plugin_core_ |
holds a pointer to the associated CPUCore instance. | |
this plugin will be called before a block is executed.
it may make the same modifications as a block of translated code and returned codes are also handled the same way as those returned by a translated block.
this plugin is especially important for interrupt handlers, timer implementations or possible memory management units
CoroutinePlugin::CoroutinePlugin | ( | ) |
Definition at line 106 of file Plugin.cpp.
References etiss::Plugin::COROUTINE, etiss::Plugin::cplugin_, and etiss::Plugin::type_.
|
virtual |
Definition at line 111 of file Plugin.cpp.
|
pure virtual |
called before a block and may act in the same way as a block
Implemented in etiss::plugin::errorInjection::BlockAccurateHandler, etiss::InterruptHandler, TracePrinter, and etiss::plugin::gdb::Server.
|
virtual |
called when the simulation ends but before any deinitialization is done
code | the code that will be returned by etiss::CPUCore::execute(). |
Definition at line 112 of file Plugin.cpp.
|
inlinevirtual |