ETISS 0.11.2
ExtendableTranslatingInstructionSetSimulator(version0.11.2)
Loading...
Searching...
No Matches
PrintInstruction.h
Go to the documentation of this file.
1// SPDX-License-Identifier: BSD-3-Clause
2//
3// This file is part of ETISS. It is licensed under the BSD 3-Clause License; you may not use this file except in
4// compliance with the License. You should have received a copy of the license along with this project. If not, see the
5// LICENSE file.
15#include "etiss/Misc.h"
16#include "etiss/Plugin.h"
17
18namespace etiss
19{
20
21namespace plugin
22{
23
28{
29 public:
31 virtual void initCodeBlock(etiss::CodeBlock &block) const;
32 virtual std::string _getPluginName() const;
33 virtual void *getPluginHandle();
34};
35
36} // namespace plugin
37
38} // namespace etiss
general configuration and logging
plugins for extensions to code translation and instruction execution
A list of CodeSets.
Definition CodePart.h:532
allows to add code to the translation of instructions
Definition Plugin.h:222
holds etiss::instr::VariableInstructionSet instances for different modes.
a simple plugin that prints the instruction and address when an instruction is executed
virtual void * getPluginHandle()
called to get the handle that is available in translated code via getPoinerCode()....
virtual void finalizeInstrSet(etiss::instr::ModedInstructionSet &) const
called after all instructions have been added to allow last changes
virtual void initCodeBlock(etiss::CodeBlock &block) const
called before instructions are translated for the code block
virtual std::string _getPluginName() const
forwards: include/jit/*
Definition Benchmark.h:17