-
Notifications
You must be signed in to change notification settings - Fork 0
/
tac.ts
210 lines (186 loc) · 4.69 KB
/
tac.ts
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
import { ValueType, VoidType, CmpOpType } from './type';
export interface GlobalVariableCode {
globalAddress: number;
type: ValueType;
}
export interface LocalVariableCode {
address: number;
type: ValueType;
}
export type VariableCode = GlobalVariableCode | LocalVariableCode;
export enum ThreeAddressCodeType {
NOP = 'NOP',
FunctionCall = 'FunctionCall',
FunctionReturn = 'FunctionReturn',
Goto = 'Goto',
IfGoto = 'IfGoto',
Plus = 'Plus',
Minus = 'Minus',
Mul = 'Mul',
Div = 'Div',
Mod = 'Mod',
Negative = 'Negative',
Not = 'Not',
And = 'And',
Or = 'Or',
NotEqual = 'NotEqual',
Equal = 'Equal',
LessThan = 'LessThan',
MoreThan = 'MoreThan',
LessOrEqual = 'LessOrEqual',
MoreOrEqual = 'MoreOrEqual',
Assign = 'Assign',
PushStack = 'PushStack',
}
export type NOPCodeType = typeof ThreeAddressCodeType.NOP;
export type FunctionCallCodeType = typeof ThreeAddressCodeType.FunctionCall;
export type FunctionReturnCodeType = typeof ThreeAddressCodeType.FunctionReturn;
export type GotoCodeType = typeof ThreeAddressCodeType.Goto;
export type IfGotoCodeType = typeof ThreeAddressCodeType.IfGoto;
export type BinOPCodeType =
| 'Plus'
| 'Minus'
| 'Mul'
| 'Div'
| 'Mod'
| 'And'
| 'Or'
| CmpOpType;
export type UnitOPCodeType = 'Negative' | 'Not' | 'Assign';
export type PushStackCodeType = typeof ThreeAddressCodeType.PushStack;
export interface NOPCode {
type: NOPCodeType;
}
export interface FunctionCallCode {
type: FunctionCallCodeType;
name: string;
}
export interface FunctionReturnCode {
type: FunctionReturnCodeType;
name: string;
src?: VariableCode | LiteralCode;
}
export interface GotoCode {
type: GotoCodeType;
offset: number;
}
export interface IfGotoCode {
type: IfGotoCodeType;
src: VariableCode | LiteralCode;
// when src is equal to target, goto
target: boolean;
offset: number;
}
export interface LiteralCode {
value: number | string | boolean;
type: ValueType;
}
export interface BinOPCode {
type: BinOPCodeType;
dst: VariableCode;
x: VariableCode | LiteralCode;
y: VariableCode | LiteralCode;
}
export interface UnitOPCode {
type: UnitOPCodeType;
dst: VariableCode;
src: VariableCode | LiteralCode;
}
export interface PushStackCode {
type: PushStackCodeType;
src: VariableCode | LiteralCode;
}
export type ThreeAddressCode =
| NOPCode
| FunctionCallCode
| FunctionReturnCode
| GotoCode
| IfGotoCode
| BinOPCode
| UnitOPCode
| PushStackCode;
export function getBinOPType(
op: BinOPCodeType,
a?: ValueType | VoidType,
b?: ValueType | VoidType
): ValueType | undefined {
if (!a || !b) return undefined;
if (a === 'voidType' || b === 'voidType') return undefined;
if (op === 'Plus') {
if (a === 'stringType' || b === 'stringType') {
return 'stringType';
} else if (a === 'floatType' || b === 'floatType') {
return 'floatType';
} else {
return 'numberType';
}
} else if (op === 'Minus') {
if (a === 'stringType' || b === 'stringType') {
// throw new Error('string can not minus');
return undefined;
} else if (a === 'floatType' || b === 'floatType') {
return 'floatType';
} else {
return 'numberType';
}
} else if (op === 'Mul') {
if (a === 'stringType' || b === 'stringType') {
// throw new Error('string can not mul');
return undefined;
} else if (a === 'floatType' || b === 'floatType') {
return 'floatType';
} else {
return 'numberType';
}
} else if (op === 'Div') {
if (a === 'stringType' || b === 'stringType') {
// throw new Error('string can not div');
return undefined;
} else if (a === 'floatType' || b === 'floatType') {
return 'floatType';
} else {
return 'numberType';
}
} else if (op === 'Mod') {
if (a === 'stringType' || b === 'stringType') {
return undefined;
} else if (a === 'floatType' || b === 'floatType') {
return 'floatType';
} else {
return 'numberType';
}
} else if (
op === 'And' ||
op === 'Or' ||
op === 'Equal' ||
op === 'NotEqual' ||
op === 'LessOrEqual' ||
op === 'LessThan' ||
op === 'MoreOrEqual' ||
op === 'MoreThan'
) {
return 'boolType';
} else {
// throw new Error(`${op} is not a binary operation`);
return undefined;
}
}
export function getUnitOPType(
op: UnitOPCodeType,
src: ValueType | VoidType
): ValueType | undefined {
if (!src) return undefined;
if (src === 'voidType') return undefined;
if (op === 'Assign') {
return src;
} else if (op === 'Negative') {
if (src === 'stringType') {
return undefined;
}
return src;
} else if (op === 'Not') {
return 'boolType';
} else {
return undefined;
}
}