-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathassembler_parser.h
47 lines (32 loc) · 969 Bytes
/
assembler_parser.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*******************************************************************\
Module:
Author: Daniel Kroening, [email protected]
\*******************************************************************/
#ifndef CPROVER_ASSEMBLER_ASSEMBLER_PARSER_H
#define CPROVER_ASSEMBLER_ASSEMBLER_PARSER_H
#include <util/parser.h>
#include <list>
class assembler_parsert;
int yyassemblererror(assembler_parsert &, void *, const std::string &error);
class assembler_parsert:public parsert
{
public:
typedef std::vector<irept> instructiont;
std::list<instructiont> instructions;
void add_token(const irept &irep)
{
if(instructions.empty())
new_instruction();
instructions.back().push_back(irep);
}
void new_instruction()
{
instructions.push_back(instructiont());
}
explicit assembler_parsert(message_handlert &message_handler)
: parsert(message_handler)
{
}
bool parse() override;
};
#endif // CPROVER_ASSEMBLER_ASSEMBLER_PARSER_H