-
Notifications
You must be signed in to change notification settings - Fork 0
/
control.js
269 lines (244 loc) · 5.07 KB
/
control.js
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
'use strict';
const cradle = require('./cradle');
const q = require('q');
const emitLn = cradle.emitLn,
getName = cradle.getName,
init = cradle.init,
look = cradle.look,
expected = cradle.expected,
match = cradle.match,
abort = cradle.abort;
let labelCount = 0;
function newLabel() {
let result = 'L' + labelCount;
labelCount++;
return result;
}
function postLabel(l) {
console.log(l + ':');
}
function other() {
return getName()
.then((name) => {
emitLn(name);
});
}
function doFor() {
let label1, label2, counterName;
return match('f')
.then(() => {
label1 = newLabel();
label2 = newLabel();
return getName();
})
.then((name) => {
counterName = name;
return match('=');
})
.then(() => {
return expression();
})
.then(() => {
emitLn('SUBQ #1,D0');
emitLn('LEA ' + counterName + '(PC),A0');
emitLn('MOVE D0,(A0)');
return expression();
})
.then(() => {
emitLn('MOVE D0,-(SP)');
postLabel(label1);
emitLn('LEA ' + counterName + '(PC),A0');
emitLn('MOVE (A0),D0');
emitLn('ADDQ #1,D0');
emitLn('MOVE D0,(A0)');
emitLn('CMP (SP),D0');
emitLn('BGT ' + label2);
return block(label2);
})
.then(() => {
return match('e');
})
.then(() => {
emitLn('BRA ' + label1);
postLabel(label2);
emitLn('ADDQ #2,SP');
})
}
function block(exitLabel) {
function continueBlock() {
return block(exitLabel);
};
return q()
.then(() => {
const c = look();
if (c !== 'e' && c !== 'l' && c !== 'u') {
switch(c) {
case 'i':
return doIf(exitLabel)
.then(continueBlock);
case 'w':
return doWhile()
.then(continueBlock);
case 'p':
return doLoop()
.then(continueBlock);
case 'r':
return doRepeat()
.then(continueBlock);
case 'f':
return doFor()
.then(continueBlock);
case 'd':
return doDo()
.then(continueBlock);
case 'b':
return doBreak(exitLabel)
.then(continueBlock);
default:
return other()
.then(continueBlock);
}
}
});
}
function condition() {
emitLn('<condition>');
}
function expression() {
emitLn('<expr>');
}
function doIf(loopExitLabel) {
let label1, label2;
return match('i')
.then(() => {
label1 = newLabel();
label2 = label1;
return condition();
})
.then(() => {
emitLn('BEQ ' + label1);
return block();
})
.then(() => {
let nextChar = look();
if (nextChar === 'l') {
return match('l')
.then(() => {
label2 = newLabel();
emitLn('BRA ' + label2);
postLabel(label1);
return block(loopExitLabel);
});
}
}).then(() => {
return match('e');
})
.then(() => {
postLabel(label2);
});
}
function doBreak(label) {
return match('b')
.then(() => {
if (label !== '') {
emitLn('BRA ' + label);
} else {
abort('No loop to break from');
}
});
}
function doWhile() {
let label1, label2;
return match('w')
.then(() => {
label1 = newLabel();
label2 = newLabel();
postLabel(label1);
return condition();
})
.then(() => {
emitLn('BEQ ' + label2);
return block(label2);
})
.then(() => {
return match('e');
})
.then(() => {
emitLn('BRA ' + label1);
postLabel(label2);
});
}
function doLoop() {
let label1, label2;
return match('p')
.then(() => {
label1 = newLabel();
label2 = newLabel();
postLabel(label1);
return block(label2);
})
.then(() => {
return match('e');
})
.then(() => {
emitLn('BRA ' + label1);
postLabel(label2);
});
}
function doRepeat() {
let label1, label2;
return match('r')
.then(() => {
label1 = newLabel();
label2 = newLabel();
postLabel(label1);
return block(label2);
})
.then(() => {
return match('u');
})
.then(() => {
return condition();
})
.then(() => {
emitLn('BEQ ' + label1);
postLabel(label2);
});
}
function doDo() {
let label1, label2;
return match('d')
.then(() => {
label1 = newLabel();
label2 = newLabel();
return expression();
})
.then(() => {
emitLn('SUBQ #1,D0');
postLabel(label1);
emitLn('MOVE D0,-(SP)');
return block(label2);
})
.then(() => {
emitLn('MOVE (SP)+,D0');
emitLn('DBRA D0,' + label);
emitLn('SUBQ #2,SP');
postLabel(label2);
emitLn('ADDQ #2,SP');
});
}
function doProgram() {
return block('')
.then(() => {
const c = look();
if (c !== 'e') return expected('End');
emitLn('END');
});
}
init()
.then(() => {
return doProgram();
})
.catch((err) => {
console.log(err.stack);
});