-
Notifications
You must be signed in to change notification settings - Fork 4
/
test_11.py
executable file
·498 lines (368 loc) · 12.8 KB
/
test_11.py
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
#! /usr/bin/env pytest
import pytest
from nand import run
from nand.platform import BUNDLED_PLATFORM
from nand.translate import AssemblySource, translate_library
import project_10
import project_11
def test_symbols_statics():
st = project_11.SymbolTable("Main")
st.define("x", "int", "static")
st.define("y", "int", "static")
assert st.count("static") == 2
assert st.kind_of("x") == "static"
assert st.type_of("y") == "int"
assert st.index_of("x") == 0
def test_symbols_fields():
st = project_11.SymbolTable("Main")
st.define("width", "int", "this")
st.define("height", "int", "this")
assert st.count("this") == 2
assert st.kind_of("width") == "this"
assert st.type_of("height") == "int"
assert st.index_of("height") == 1
def test_symbols_args():
st = project_11.SymbolTable("Main")
st.define("name", "string", "argument")
st.define("isCool", "bool", "argument")
assert st.count("argument") == 2
assert st.kind_of("name") == "argument"
assert st.type_of("isCool") == "bool"
assert st.index_of("name") == 0
def test_symbols_locals():
st = project_11.SymbolTable("Main")
st.define("i", "int", "local")
st.define("j", "int", "local")
assert st.count("local") == 2
assert st.kind_of("i") == "local"
assert st.type_of("j") == "int"
assert st.index_of("j") == 1
def test_symbols_shadow():
"""A local variable *shadows* a static with the same.
"""
st = project_11.SymbolTable("Main")
st.define("x", "int", "static")
st.start_subroutine("main", "function")
st.define("x", "string", "local")
assert st.count("static") == 1
assert st.count("local") == 1
assert (st.kind_of("x"), st.type_of("x"), st.index_of("x")) == ("local", "string", 0)
def test_symbols_context():
st = project_11.SymbolTable("Main")
st.define("x", "int", "static")
assert st.context() == "class Main"
st.start_subroutine("main", "function")
assert st.context() == "function Main.main"
#
# Compile: expressions
#
def test_trivial_expression():
ast = project_10.ExpressionP.parse(project_10.lex("1 + 2"))
symbol_table = project_11.SymbolTable("Main")
asm = AssemblySource()
project_11.compile_expression(ast, symbol_table, asm)
assert asm.lines == [
" push constant 1",
" push constant 2",
" add",
]
#
# Compile: program fragments
#
@pytest.mark.skip("This isn't part of the spec; might make a great addition.")
def test_other_instance_field_access():
ast = project_10.parse_class("""
class BoxedInt {
field int value;
method boolean compare(BoxedInt other) {
return value < other.value;
}
}
""")
asm = AssemblySource()
project_11.compile_class(ast, asm)
assert asm.lines == [
" function BoxedInt.compare 1",
" push argument 0",
" pop pointer 0",
" push this 0",
" push argument 1",
" pop pointer 1",
" push that 0",
" lt",
" return",
"",
]
def test_call_function_from_function_context():
ast = project_10.parse_class("""
class Foo {
function void run() {
do Bar.go();
return;
}
}
""")
asm = AssemblySource()
project_11.compile_class(ast, asm)
assert asm.lines == [
" function Foo.run 1",
" call Bar.go 0",
" pop temp 0",
" push constant 0",
" return",
"",
]
def test_call_method_from_method_context():
ast = project_10.parse_class("""
class Foo {
method void run() {
do go();
return;
}
}
""")
asm = AssemblySource()
project_11.compile_class(ast, asm)
assert asm.lines == [
" function Foo.run 1",
" push argument 0",
" pop pointer 0",
" push pointer 0", # implicit `this` for self call
" call Foo.go 1",
" pop temp 0",
" push constant 0",
" return",
"",
]
def test_field_in_function_context():
"""A common error case; referring to an instance member within a function."""
ast = project_10.parse_class("""
class Foo {
field int x;
function int run() {
return x;
}
}
""")
with pytest.raises(Exception) as exc_info:
asm = AssemblySource()
project_11.compile_class(ast, asm)
assert exc_info.value.args == ('Tried to use field "x" in static context: function Foo.run',)
def test_call_method_from_function_context():
"""A common error case; referring to a function using the method-call syntax."""
ast = project_10.parse_class("""
class Foo {
function void run() {
do go(); // Probably meant `Foo.go()`
return;
}
}
""")
with pytest.raises(Exception) as exc_info:
asm = AssemblySource()
project_11.compile_class(ast, asm)
assert exc_info.value.args == ('Tried to use implicit "this" in static (function) context: Foo.run',)
def test_missing_return():
"""Another very common error."""
ast = project_10.parse_class("""
class Foo {
function void noReturn() {
// oops, forgot to `return;` here
}
}
""")
with pytest.raises(Exception) as exc_info:
asm = AssemblySource()
project_11.compile_class(ast, asm)
assert exc_info.value.args == ('Missing "return" in Foo.noReturn',)
def test_return_on_both_branches():
"""Accept this common pattern."""
ast = project_10.parse_class("""
class Foo {
function void toInt(boolean x) {
if (x) {
return 1;
}
else {
return 0;
}
}
}
""")
asm = AssemblySource()
project_11.compile_class(ast, asm)
# Ok if we got here with no error
def test_constructor_wrong_name():
"""This could be confusing, so make it an error."""
ast = project_10.parse_class("""
class Foo {
constructor Foo notNew() {
return this;
}
}
""")
with pytest.raises(Exception) as exc_info:
asm = AssemblySource()
project_11.compile_class(ast, asm)
assert exc_info.value.args == ('Must be named "new": constructor Foo.notNew',)
def test_constructor_bad_result_type():
"""This could be confusing, so make it an error."""
ast = project_10.parse_class("""
class Foo {
constructor Bar new() {
return this;
}
}
""")
with pytest.raises(Exception) as exc_info:
asm = AssemblySource()
project_11.compile_class(ast, asm)
assert exc_info.value.args == ('Result type does not match: constructor Foo.new',)
def test_constructor_void_return():
"""Constructor must return "this", or the caller will be surprised."""
ast = project_10.parse_class("""
class Foo {
constructor Foo new() {
return; // meaning "null"
}
}
""")
with pytest.raises(Exception) as exc_info:
asm = AssemblySource()
project_11.compile_class(ast, asm)
assert exc_info.value.args == ('Does not return "this": constructor Foo.new',)
def test_no_this():
"""This could be confusing, so make it an error."""
ast = project_10.parse_class("""
class Foo {
function void run() {
return this;
}
}
""")
with pytest.raises(Exception) as exc_info:
asm = AssemblySource()
project_11.compile_class(ast, asm)
assert exc_info.value.args == ('Undefined "this" in static context: function Foo.run',)
#
# Compile: full programs
#
def test_program_seven_opcodes():
"""This program is so simple that there's probably only one reasonable way to compile it,
so just compare the VM opcodes."""
with open("examples/project_11/Seven/Main.jack") as f:
src = f.read()
ast = project_10.parse_class(src)
asm = AssemblySource()
project_11.compile_class(ast, asm)
expected = """
function Main.main 1
push constant 1
push constant 2
push constant 3
call Math.multiply 2
add
call Output.printInt 1
pop temp 0
push constant 0
return
"""
assert list(asm.lines) == expected.split("\n")[1:-1]
def test_program_average_compile():
# Isolate the compiler by using the included solution for everything else:
platform = BUNDLED_PLATFORM
simulator = "codegen"
with open("examples/project_11/Average/Main.jack") as f:
src = f.read()
ast = platform.parser(src)
asm = AssemblySource()
project_11.compile_class(ast, asm)
# If it fails, you probably want to see the opcodes it wrote:
for l in asm.lines:
print(l)
ops = [platform.parse_line(l) for l in asm.lines if platform.parse_line(l) is not None]
translator = platform.translator()
translator.preamble()
for op in ops:
translator.handle(op)
translate_library(translator, platform)
translator.finish()
translator.check_references()
# TODO: would need to provide input via the keyboard port (see test_12.test_keyboard_lib)
# computer = run(platform.chip, simulator=simulator)
# output_stream = StringWriter()
# translator.asm.run(platform.assemble, computer, stop_cycles=200_000, debug=True, tty=output_stream)
# output_lines = "".join(output_stream.strs).split("\n")
# assert output_lines == [
# # TODO
# ]
def test_program_convert_to_bin():
# Isolate the compiler by using the included solution for everything else:
platform = BUNDLED_PLATFORM
simulator = "codegen"
with open("examples/project_11/ConvertToBin/Main.jack") as f:
src = f.read()
ast = platform.parser(src)
asm = AssemblySource()
project_11.compile_class(ast, asm)
# If it fails, you probably want to see the opcodes it wrote:
for l in asm.lines:
print(l)
ops = [platform.parse_line(l) for l in asm.lines if platform.parse_line(l) is not None]
translator = platform.translator()
translator.preamble()
for op in ops:
translator.handle(op)
# Note: using the full OS implementation is simpler then the fancy tricks done in test_12
# to isolate individual OS classes, but it also means that this test might need 100s
# of thousands of cycles to run (mainly initializing the OS unnecessarily.)
translate_library(translator, platform)
translator.finish()
translator.check_references()
computer = run(platform.chip, simulator=simulator)
computer.poke(8000, 0xBEEF)
translator.asm.run(platform.assemble, computer, stop_cycles=200_000, debug=True)
for b in range(16):
assert computer.peek(8001+b) == bool(0xBEEF & (1 << b))
def test_program_complex_arrays():
# Isolate the compiler by using the included solution for everything else:
platform = BUNDLED_PLATFORM
simulator = "codegen"
with open("examples/project_11/ComplexArrays/Main.jack") as f:
src = f.read()
ast = platform.parser(src)
asm = AssemblySource()
project_11.compile_class(ast, asm)
# If it fails, you probably want to see the opcodes it wrote:
for l in asm.lines:
print(l)
ops = [platform.parse_line(l) for l in asm.lines if platform.parse_line(l) is not None]
translator = platform.translator()
translator.preamble()
for op in ops:
translator.handle(op)
# Note: using the full OS implementation is simpler then the fancy tricks done in test_12
# to isolate individual OS classes, but it also means that this test might need millions of
# cycles to run, including writing all the results to the screen buffer.
translate_library(translator, platform)
translator.finish()
translator.check_references()
computer = run(platform.chip, simulator=simulator)
output_stream = StringWriter()
translator.asm.run(platform.assemble, computer, stop_cycles=5_000_000, debug=True, tty=output_stream)
output_lines = "".join(output_stream.strs).split("\n")
assert output_lines == [
"Test 1: expected result: 5; actual result: 5",
"Test 2: expected result: 40; actual result: 40",
"Test 3: expected result: 0; actual result: 0",
"Test 4: expected result: 77; actual result: 77",
"Test 5: expected result: 110; actual result: 110",
"",
]
class StringWriter:
"""Dumb "file-like object" (barely) for capturing the output from simulation in a string."""
def __init__(self):
self.strs = []
def write(self, chars):
self.strs.append(chars)
print(chars)