ROSE  0.9.6a
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Assembler.h
Go to the documentation of this file.
1 #ifndef ROSE_ASSEMBLER_H
2 #define ROSE_ASSEMBLER_H
3 
49 class Assembler {
50 public:
52  class Exception: public std::runtime_error {
53  public:
55  Exception(const std::string &reason, SgAsmInstruction *insn)
56  : std::runtime_error(reason), insn(insn)
57  {}
59  Exception(const std::string &reason)
60  : std::runtime_error(reason), insn(NULL)
61  {}
62  void print(std::ostream&) const;
63  friend std::ostream& operator<<(std::ostream&, const Exception&);
64 
66  };
67 
72  {
78  };
79 
82  {}
83 
84  virtual ~Assembler() {}
85 
87  static Assembler *create(SgAsmInterpretation *interp);
88 
91 
92  /*==========================================================================================================================
93  * Main public assembly methods
94  *========================================================================================================================== */
95 public:
100 
105 
109  SgUnsignedCharList assembleBlock(const std::vector<SgAsmInstruction*> &insns, rose_addr_t starting_rva);
110 
112  virtual SgUnsignedCharList assembleProgram(const std::string &source) = 0;
113 
114 
115 
116  /*==========================================================================================================================
117  * Assembler properties and settings
118  *========================================================================================================================== */
119 public:
122  p_encoding_type = et;
123  }
124 
127  return p_encoding_type;
128  }
129 
131  void set_debug(FILE *f) {
132  p_debug = f;
133  }
134 
136  FILE *get_debug() const {
137  return p_debug;
138  }
139 
140  /*==========================================================================================================================
141  * Data members
142  *========================================================================================================================== */
143 protected:
144  FILE *p_debug;
146 };
147 
148 #endif