ROSE
0.9.6a
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
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
65
SgAsmInstruction
*
insn
;
66
};
67
71
enum
EncodingType
72
{
73
ET_SHORTEST
,
74
ET_LONGEST
,
75
ET_MATCHES
78
};
79
80
Assembler
()
81
:
p_debug
(NULL),
p_encoding_type
(
ET_SHORTEST
)
82
{}
83
84
virtual
~Assembler
() {}
85
87
static
Assembler
*
create
(
SgAsmInterpretation
*interp);
88
90
static
Assembler
*
create
(
SgAsmGenericHeader
*);
91
92
/*==========================================================================================================================
93
* Main public assembly methods
94
*========================================================================================================================== */
95
public
:
99
virtual
SgUnsignedCharList
assembleOne
(
SgAsmInstruction
*insn) = 0;
100
104
SgUnsignedCharList
assembleBlock
(
SgAsmBlock
*);
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
:
121
void
set_encoding_type
(
EncodingType
et) {
122
p_encoding_type
= et;
123
}
124
126
EncodingType
get_encoding_type
()
const
{
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
;
145
EncodingType
p_encoding_type
;
146
};
147
148
#endif
rose-edg4x
src
frontend
Disassemblers
Assembler.h
Generated on Mon May 5 2014 17:28:48 for ROSE by
1.8.4