ETISS 0.8.0
Extendable Translating Instruction Set Simulator (version 0.8.0)
|
allows to add code to the translation of instructions More...
#include <Plugin.h>
Public Member Functions | |
TranslationPlugin () | |
virtual | ~TranslationPlugin () |
virtual void | initInstrSet (etiss::instr::ModedInstructionSet &) const |
called to add instructions to the instruction set | |
virtual void | finalizeInstrSet (etiss::instr::ModedInstructionSet &) const |
called after all instructions have been added to allow last changes | |
virtual void | initCodeBlock (etiss::CodeBlock &) const |
called before instructions are translated for the code block | |
virtual void | finalizeCodeBlock (etiss::CodeBlock &) const |
called after all instructions have been translated for the code block | |
virtual void * | getPluginHandle () |
called to get the handle that is available in translated code via getPoinerCode(). [default: this] | |
![]() | |
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 () |
Protected Member Functions | |
std::string | getPointerCode () const |
returns a C code expression that allows to get or assign a pointer to the variable assigned to this translation plugin. | |
![]() | |
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. | |
Private Attributes | |
std::string | pointerCode |
Friends | |
class | etiss::Translation |
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 | |
![]() | |
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. | |
allows to add code to the translation of instructions
There can be one member variable used. During translation a pointer of type void, which can be cast to any type, to the member variable can be obtained by the code returned by getPointerCode() as string
This code accesses the variable plugin_pointers in the translated code, which is a parameter that holds the a list of "this pointers" to all translation plugins, it seems the "this pointers" always point to the member variable (???)
The function TranslationPlugin::getPluginHandle returns the "this pointer", It is used in Translation::init to fill the list of all translation plugins
TranslationPlugin::TranslationPlugin | ( | ) |
Definition at line 85 of file Plugin.cpp.
References etiss::Plugin::TRANSLATION, etiss::Plugin::trplugin_, and etiss::Plugin::type_.
|
virtual |
Definition at line 90 of file Plugin.cpp.
|
virtual |
called after all instructions have been translated for the code block
Reimplemented in etiss::plugin::gdb::Server.
Definition at line 94 of file Plugin.cpp.
Referenced by etiss::call_finalizeCodeBlock(), and etiss::call_finalizeCodeBlock_ul().
|
virtual |
called after all instructions have been added to allow last changes
Reimplemented in etiss::CPUArch, etiss::plugin::InstructionAccurateCallback, etiss::plugin::InstructionSpecificAddressCallback, etiss::plugin::PrintInstruction, etiss::plugin::VariableValueLogger, and etiss::plugin::gdb::Server.
Definition at line 92 of file Plugin.cpp.
Referenced by etiss::Translation::init().
|
virtual |
called to get the handle that is available in translated code via getPoinerCode(). [default: this]
Reimplemented in etiss::plugin::InstructionSpecificAddressCallback, etiss::plugin::PrintInstruction, and etiss::plugin::gdb::Server.
Definition at line 96 of file Plugin.cpp.
Referenced by etiss::Translation::init().
|
protected |
returns a C code expression that allows to get or assign a pointer to the variable assigned to this translation plugin.
this function may only be called from within member functions of this class pointerCode is set in Translation::init
Definition at line 101 of file Plugin.cpp.
References pointerCode.
Referenced by etiss::plugin::InstructionAccurateCallback::finalizeInstrSet(), etiss::plugin::InstructionSpecificAddressCallback::finalizeInstrSet(), etiss::plugin::VariableValueLogger::finalizeInstrSet(), etiss::plugin::gdb::Server::finalizeInstrSet(), and etiss::plugin::InstructionSpecificAddressCallback::initCodeBlock().
|
virtual |
called before instructions are translated for the code block
Reimplemented in etiss::plugin::InstructionAccurateCallback, etiss::plugin::InstructionSpecificAddressCallback, etiss::plugin::PrintInstruction, etiss::plugin::VariableValueLogger, RV32IMACFDArch, and RV64IMACFDArch.
Definition at line 93 of file Plugin.cpp.
Referenced by etiss::call_initCodeBlock(), and etiss::call_initCodeBlock_ul().
|
virtual |
called to add instructions to the instruction set
Reimplemented in RV32IMACFDArch, RV64IMACFDArch, and etiss::DataSheetAccurateTiming.
Definition at line 91 of file Plugin.cpp.
Referenced by etiss::Translation::init().
|
friend |
|
private |
Definition at line 288 of file Plugin.h.
Referenced by getPointerCode(), and etiss::Translation::init().