ROSE  0.11.96.0
Cil.h
1 #ifndef ROSE_BinaryAnalysis_Unparser_Cil_H
2 #define ROSE_BinaryAnalysis_Unparser_Cil_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 unparseCilMnemonic(SgAsmCilInstruction*);
12 std::string unparseCilExpression(SgAsmExpression*, const LabelMap*, const RegisterDictionary*);
13 
14 struct CilSettings: public Settings {};
15 
16 class Cil: public Base {
17  CilSettings settings_;
18 
19 protected:
20  explicit Cil(const CilSettings &settings)
21  : settings_(settings) {}
22 
23 public:
24  static Ptr instance(const CilSettings &settings = CilSettings()) {
25  return Ptr(new Cil(settings));
26  }
27 
28  Ptr copy() const override {
29  return instance(settings());
30  }
31 
32  const CilSettings& settings() const override { return settings_; }
33  CilSettings& 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.
Base class for expressions.