-
Notifications
You must be signed in to change notification settings - Fork 0
/
Common.h
63 lines (57 loc) · 1.56 KB
/
Common.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#ifndef COMMON_H
#define COMMON_H
#include <fstream>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <utility>
#include <string>
#include <list>
#include <vector>
#include <map>
#include <set>
#include <stack>
#include <queue>
#include <cstdlib>
#include <cassert>
#include <functional>
using namespace std;
typedef enum //枚举类型,保存词素类型
{
/* 结束标志和错误标志 */
ENDFILE, ERROR,
/* 保留字 */
IF, ELSE, INT, RETURN, VOID, WHILE,
/* 变量名和数字 */
ID, NUM,
/* 特殊字符 */
/* { } >= <= != == = < > + - * / ( ) ; , */
LBRACE, RBRACE, GTE, LTE, NEQ, EQ, ASSIGN, LT, GT, PLUS, MINUS, MULT, DIV, LPAREN, RPAREN, SEMI, COMMA,
/* 行注释 段注释 */
LCOMMENT, PCOMMENT,
/*换行符*/
NEXTLINE,
/* [ ] */
LBRACKET, RBRACKET
} LexicalType;
typedef pair<LexicalType, string> Token;
struct Quaternary {
string op;//操作符
string src1;//源操作数1
string src2;//源操作数2
string des;//目的操作数
};
/*****************************
* string name;//基本块的名称
* vector<Quaternary> codes;//基本块中的四元式
* int next1;//基本块的下一连接块
* int next2;//基本块的下一连接块
* ***************************/
struct Block {
string name;//基本块的名称
vector<Quaternary> codes;//基本块中的四元式
int next1;//基本块的下一连接块
int next2;//基本块的下一连接块
};
void outputError(string err);
#endif // !COMMON_H