ROSE  0.11.96.0
Powerpc.h
1 #ifndef ROSE_BinaryAnalysis_Unparser_Powerpc_H
2 #define ROSE_BinaryAnalysis_Unparser_Powerpc_H
3 #include <featureTests.h>
4 #ifdef ROSE_ENABLE_BINARY_ANALYSIS
5 #include <Rose/BinaryAnalysis/Unparser/Base.h>
6 
7 namespace Rose {
8 namespace BinaryAnalysis {
9 namespace Unparser {
10 
11 std::string unparsePowerpcMnemonic(SgAsmPowerpcInstruction*);
12 std::string unparsePowerpcExpression(SgAsmExpression*, const LabelMap*, const RegisterDictionary*);
13 
14 struct PowerpcSettings: public Settings {};
15 
16 class Powerpc: public Base {
17  PowerpcSettings settings_;
18 
19 protected:
20  explicit Powerpc(const PowerpcSettings &settings)
21  : settings_(settings) {}
22 
23 public:
24  static Ptr instance(const PowerpcSettings &settings = PowerpcSettings()) {
25  return Ptr(new Powerpc(settings));
26  }
27 
28  Ptr copy() const override {
29  return instance(settings());
30  }
31 
32  const PowerpcSettings& settings() const override { return settings_; }
33  PowerpcSettings& settings() override { return settings_; }
34 
35 protected:
36  void emitInstruction(std::ostream&, SgAsmInstruction*, State&) const override;
37  void emitOperandBody(std::ostream&, SgAsmExpression*, State&) const override;
38 
39 private:
40  void outputExpr(std::ostream&, SgAsmExpression*, State&) const;
41 };
42 
43 } // namespace
44 } // namespace
45 } // namespace
46 
47 #endif
48 #endif
Base class for machine instructions.
Main namespace for the ROSE library.
Settings that control unparsing.
Represents one PowerPC machine instruction.
Base class for expressions.