-
Notifications
You must be signed in to change notification settings - Fork 0
/
symbol.h
126 lines (105 loc) · 3.72 KB
/
symbol.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
//
// Created by oruret on 2018/6/4.
//
#pragma once
#include "common.h"
#include "intercode.h"
#include "set.h"
/*******************************************************************************
变量结构体
*******************************************************************************/
class Var{
//特殊标记
bool literal;//是否字面量
vector<int>scopePath;
//基本声明形式
bool externed;//extern声明或定义
Tag type;//变量类型
string name;//变量名称
bool isPtr;//是否是指针
bool isArray;//是否是数组
int arraySize;//数组长度
//初始值部分
bool isLeft;//是否可以作为左值
Var* initData;//缓存初始数据,延迟处置处理
bool inited;//是否初始化数据,字面量一定是初始化了的特殊变量
union{
int intVal;
char charVal;
};
string ptrVal;//初始化字符指针常量字符串名称 因为是数组
string strVal;//字符串常量的值
Var*ptr;//指向当前变量指针变量
//附加信息
int size;//变量大小
int offset;//局部变量,参数变量的栈帧偏移,默认值0为无效之--表示全局变量
//内部使用函数
void setExtern(bool ext);//设置extern
void setType(Tag t);
void setPtr(bool ptr);
void setName(string n);
void setArray(int len);
bool setInit();
void clear();
void setType(Tag t);
public:
//特殊变量1
//构造函数
Var(vector<int>&sp,bool ext,Tag t,bool ptr,string name,Var*init = NULL);//变量
Var(vector<int>&sp,bool ext,Tag t,string name,int len);//数组
Var(Token*lt);//设定字面量
Var(int val);//整数变量
Var(vector<int>&sp,Tag t,bool ptr);//临时变量
Var(vector<int>&sp,Var*v);//拷贝变量
Var();
//外界调用接口
string getName();
vector<int>& getPath();
string getStrVal();//获取字符串常量内容
bool isBase();
bool isVoid();
bool getArray();
bool getPtr();
Var* getVoid();
bool isRef();
bool isLiteral();
bool getLeft();//获取左值属性
Var* getPointer();//获取指针
void setPointer();//设置指针
Var* getStep(Var*v);
};
/*******************************************************************************
函数结构
*******************************************************************************/
class Fun{
//基本信息
bool externed;//声明或者定义
Tag type;//变量类型
string name;//变量名称
vector<Var*>paraVar;//形参变量列表
//临时变量地址分配
int maxDepth;//栈的最大深度,初始0,标识函数栈分配的最大空间
int curEsp;//当前栈指针位置,初始化为0,即ebp储存点
bool relocated;//栈帧重定位标记
//作用域
vector<int>scopeEsp;//当前作用域初始esp,动态控制作用域的分配和释放
InterCode interCode;
InterInst* returnPoint;//返回点
public:
//构造函数与析构函数
Fun(bool ext,Tag t ,string n,vector<Var*>¶List);
~Fun();
bool match(Fun*f);//声明定义匹配
bool match(vector<Var*>&args);//参数匹配
void define(Fun*def);//将函数声明转化为定义,需要拷贝参数列表,设定extern
//作用域管理,局部变量地址计算
void enterScope();//进入一个新的作用域
void leaveScope();//离开当前作用域
void locate(Var*var);
//中间代码
void addInst(InterInst*inst);//添加一条中间代码
void setReturnPoint(InterInst*inst);//设置函数返回点
InterInst* getReturnPoint();//获取函数返回点
//外部调用接口
Tag getType();//获取函数类型
};