1 #ifndef ROSE_BinaryAnalysis_Unparser_M68k_H
2 #define ROSE_BinaryAnalysis_Unparser_M68k_H
3 #include <featureTests.h>
4 #ifdef ROSE_ENABLE_BINARY_ANALYSIS
5 #include <Rose/BinaryAnalysis/Unparser/Base.h>
7 #include <Rose/BinaryAnalysis/BasicTypes.h>
10 namespace BinaryAnalysis {
23 : settings_(settings) {}
27 return Ptr(
new M68k(settings));
30 Ptr copy()
const override {
31 return instance(settings());
34 const M68kSettings& settings()
const override {
return settings_; }
38 void emitInstruction(std::ostream&,
SgAsmInstruction*, State&)
const override;
39 void emitOperandBody(std::ostream&,
SgAsmExpression*, State&)
const override;
Base class for machine instructions.
Sawyer::SharedPointer< RegisterDictionary > RegisterDictionaryPtr
Reference counting pointer.
Main namespace for the ROSE library.
Settings that control unparsing.
Base class for expressions.