-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.zig
1465 lines (1411 loc) · 37.6 KB
/
tests.zig
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
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
const std = @import("std");
var expected_binary: []const u8 = "";
// Writes all sources to files of the naming 0.asm, 1.asm, 2.asm, etc. to a temporary directory,
// then creates a symbol link for the current working directory's standard directory in the temporary directory,
// and then runs the test by using the current working directory's zig-out/bin/rva assembler on the first source file.
// Additionally also runs the formatter on all source files and makes sure the source code is formatted.
// If the expected state is success, compares using the last line's message.
// If the expected state is failure, compares using the error message.
fn test_sources(sources: []const [:0]const u8, expected_output: []const u8, expected_state: enum { success, failure }) anyerror!void {
defer expected_binary = "";
var temporary_directory = std.testing.tmpDir(.{});
defer temporary_directory.cleanup();
const current_path = try std.fs.cwd().realpathAlloc(std.testing.allocator, ".");
defer std.testing.allocator.free(current_path);
const standard_path = try std.mem.concat(std.testing.allocator, u8, &.{ current_path, &.{std.fs.path.sep}, "standard" });
defer std.testing.allocator.free(standard_path);
try temporary_directory.dir.symLink(standard_path, "standard", .{ .is_directory = true });
const assembler_executable_path = try std.mem.concat(std.testing.allocator, u8, &.{
current_path,
&.{std.fs.path.sep},
"zig-out",
&.{std.fs.path.sep},
"bin",
&.{std.fs.path.sep},
"rva",
});
defer std.testing.allocator.free(assembler_executable_path);
var env_map = std.process.EnvMap.init(std.testing.allocator);
defer env_map.deinit();
try env_map.put("TERM", "dumb");
var root_source_file_path: []const u8 = undefined;
std.debug.assert(sources.len != 0);
for (sources, 0..) |source, index| {
const source_file_path = try std.fmt.allocPrint(std.testing.allocator, "{d}.asm", .{index});
defer if (index != 0) std.testing.allocator.free(source_file_path);
errdefer if (index == 0) std.testing.allocator.free(source_file_path);
try temporary_directory.dir.writeFile(.{ .sub_path = source_file_path, .data = source });
if (index == 0) {
root_source_file_path = source_file_path;
}
// Format the source code and make sure it does not change after formatting.
// This also serves as test coverage for the formatter.
const before = try temporary_directory.dir.readFileAlloc(std.testing.allocator, source_file_path, std.math.maxInt(usize));
defer std.testing.allocator.free(before);
const result = try std.process.Child.run(.{
.allocator = std.testing.allocator,
.argv = &.{ assembler_executable_path, "format", source_file_path },
.cwd_dir = temporary_directory.dir,
.env_map = &env_map,
});
defer std.testing.allocator.free(result.stdout);
defer std.testing.allocator.free(result.stderr);
if (result.term != .Exited or result.stdout.len != 0) {
std.debug.print("standard output: {s}\n", .{result.stdout});
std.debug.print("standard error: {s}\n", .{result.stderr});
}
const after = try temporary_directory.dir.readFileAlloc(std.testing.allocator, source_file_path, std.math.maxInt(usize));
defer std.testing.allocator.free(after);
if (!std.mem.eql(u8, before, after)) {
std.debug.print("before: {s}\n", .{before});
std.debug.print("after: {s}\n", .{after});
return error.failure;
}
}
defer std.testing.allocator.free(root_source_file_path);
const result = try std.process.Child.run(.{
.allocator = std.testing.allocator,
.argv = &.{ assembler_executable_path, root_source_file_path },
.cwd_dir = temporary_directory.dir,
.env_map = &env_map,
});
defer std.testing.allocator.free(result.stdout);
defer std.testing.allocator.free(result.stderr);
errdefer {
std.debug.print("standard output: {s}\n", .{result.stdout});
std.debug.print("standard error: {s}\n", .{result.stderr});
}
if (result.term != .Exited) {
return error.failure;
}
const expected_exit_code: u8 = switch (expected_state) {
.success => 0,
.failure => 1,
};
if (result.term.Exited != expected_exit_code) {
std.debug.print("exit code: {d}\n", .{result.term.Exited});
return error.failure;
}
var output = switch (expected_state) {
.success => result.stdout,
.failure => result.stderr,
};
if (expected_output.len != 0) {
std.debug.assert(std.mem.count(u8, expected_output, "\n") == 0);
switch (expected_state) {
.success => {
if (std.mem.count(u8, output, "\n") != 1) return error.failure;
output = output[0 .. output.len - "\n".len];
},
.failure => {
if (std.mem.count(u8, output, "\n") != 3) return error.failure;
// Cut off the source code output.
output = output[0..std.mem.indexOf(u8, output, "\n").?];
},
}
}
if (!std.mem.eql(u8, output, expected_output)) {
return error.failure;
}
switch (expected_state) {
.success => {
const binary = try temporary_directory.dir.readFileAlloc(std.testing.allocator, "0", std.math.maxInt(usize));
defer std.testing.allocator.free(binary);
try std.testing.expectEqualSlices(u8, expected_binary, binary);
if (result.stderr.len != 0) {
return error.failure;
}
},
.failure => {
if (result.stdout.len != 0) {
return error.failure;
}
},
}
}
fn expect_success(source: [:0]const u8, message: []const u8) anyerror!void {
try test_sources(&.{source}, message, .success);
}
fn expect_success_multiple(sources: []const [:0]const u8, message: []const u8) anyerror!void {
try test_sources(sources, message, .success);
}
fn expect_error(source: [:0]const u8, message: []const u8) anyerror!void {
try test_sources(&.{source}, message, .failure);
}
fn expect_error_multiple(sources: []const [:0]const u8, message: []const u8) anyerror!void {
try test_sources(sources, message, .failure);
}
test "testing infrastructure" {
try expect_success(
\\@log 123
,
"0.asm:1:1: 123",
);
try expect_success_multiple(
&.{
\\@import "1.asm"
,
\\@log 123
},
"1.asm:1:1: 123",
);
try expect_error(
\\123
,
"0.asm:1:1: error: expected instruction, assignment, directive, or label",
);
try expect_error_multiple(
&.{
\\@import "1.asm"
,
\\123
},
"1.asm:1:1: error: expected instruction, assignment, directive, or label",
);
}
test "empty source file" {
try expect_success("", "");
}
test "zero in the middle of the source file" {
try expect_error(
\\@log 123\x00456
,
"0.asm:1:9: error: meaningless",
);
}
test "comments" {
try expect_success("# hello world", "");
}
test "label scope" {
try expect_error(
\\label:
\\@invoke {
\\ @log :label
\\};
,
"0.asm:3:10: error: unknown label",
);
try expect_error(
\\@invoke {
\\ label:
\\ @invoke {
\\ @log :label
\\ };
\\};
,
"0.asm:4:14: error: unknown label",
);
}
test "variable scope" {
try expect_error(
\\@invoke {
\\ variable = 123
\\ @log variable
\\};
\\@log variable
,
"0.asm:5:6: error: unknown variable",
);
try expect_error_multiple(
&.{
\\@import "1.asm"
\\
\\@log variable
,
\\variable = 123
\\@log variable
},
"0.asm:3:6: error: unknown variable",
);
try expect_success(
\\variable = 123
\\@invoke { @invoke {}; };
\\@log variable
,
"0.asm:3:1: 123",
);
try expect_success(
\\variable = 123
\\@invoke {
\\ @invoke {
\\ @log variable
\\ };
\\};
,
"0.asm:4:9: 123",
);
try expect_success(
\\variable = ?
\\@invoke {
\\ variable = 123
\\};
\\@log variable
,
"0.asm:5:1: 123",
);
try expect_success(
\\variable = ?
\\@invoke {
\\ @invoke {
\\ variable = 123
\\ };
\\};
\\@log variable
,
"0.asm:7:1: 123",
);
}
test "constant, instruction, and pseudoinstruction scopes" {
try expect_error(
\\@invoke { $constant = 123 };
,
"0.asm:1:11: error: cannot define constant in non-root scope",
);
try expect_success_multiple(
&.{
\\@import "1.asm"
\\
\\@log $constant
,
\\$constant = 123
},
"0.asm:3:1: 123",
);
try expect_error(
\\@invoke { @instruction instruction x [] };
\\instruction;
,
"0.asm:1:11: error: cannot define instruction in non-root scope",
);
expected_binary = &.{ 0x00, 0x00, 0x00, 0x00 };
try expect_success_multiple(
&.{
\\@import "1.asm"
\\
\\instruction;
,
\\@instruction instruction x [0, 0]
},
"",
);
try expect_error(
\\@invoke { @pseudoinstruction pseudoinstruction {} };
\\pseudoinstruction;
,
"0.asm:1:11: error: cannot define pseudoinstruction in non-root scope",
);
try expect_success_multiple(
&.{
\\@import "1.asm"
\\
\\pseudoinstruction;
,
\\@pseudoinstruction pseudoinstruction {}
},
"",
);
try expect_error(
\\@pseudoinstruction name {
\\ @instruction name i []
\\}
\\name;
,
"0.asm:2:5: error: cannot define instruction in non-root scope",
);
}
test "unused variable" {
try expect_error(
\\variable = 123
,
"0.asm:1:1: error: unused variable",
);
try expect_error(
\\variable = 123
\\variable = 123
,
"0.asm:1:1: error: unused variable",
);
try expect_success(
\\variable = 123
\\variable = variable + 1
,
"",
);
}
test "unused label" {
try expect_error(
\\label:
,
"0.asm:1:1: error: unused label",
);
try expect_error(
\\block = {
\\ label:
\\}
\\@invoke block;
,
"0.asm:2:5: error: unused label",
);
}
test "block labels" {
try expect_error(
\\block = { label: @log ::label }
\\@invoke block;
,
"0.asm:1:23: error: cannot use absolute label reference in block",
);
expected_binary = &.{ 0x00, 0x00, 0x00, 0x00 };
try expect_success(
\\@word 0
\\block = { label: @log :label }
\\@invoke block;
,
"0.asm:2:18: 0",
);
expected_binary = &.{ 0x00, 0x00 };
try expect_success(
\\block = {
\\ label: @byte :label
\\}
\\@inline block;
\\@inline block;
,
"",
);
try expect_success(
\\block = {
\\ label: @byte :label
\\}
\\@invoke block;
\\@invoke block;
,
"",
);
expected_binary = &.{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x07 };
try expect_success(
\\@word 0
\\block = { label: @origin 1 @byte :label }
\\@word 0
\\@inline block;
\\@word 0
\\@inline block;
,
"",
);
}
test "unused block operand" {
try expect_error(
\\@invoke {} 123
,
"0.asm:1:12: error: block does not take operand",
);
}
test "pseudoinstruction operands" {
try expect_error(
\\@pseudoinstruction pseudoinstruction {}
\\pseudoinstruction 1, 2, 3
,
"0.asm:2:19: error: block does not take operand",
);
}
test "aliasing values" {
try expect_success(
\\string = "hello"
\\alias = string
\\string.0 = 'H'
\\@log alias
,
"0.asm:4:1: [72, 101, 108, 108, 111 / Hello]",
);
try expect_success(
\\string = "abc"
\\copy = [string.0, string.1, string.2]
\\string.0 = 'A'
\\@log copy
,
"0.asm:4:1: [97, 98, 99 / abc]",
);
}
test "pseudoinstructions" {
try expect_success(
\\@pseudoinstruction pseudoinstruction {}
\\pseudoinstruction;
,
"",
);
// TODO
//expected_binary = &.{ 0x13, 0x10, 0x00, 0x00 };
//try expect_success(
// \\@bits 32
// \\@import "pseudoinstructions"
// \\slli x0, x0, 0
//,
// "",
//);
// TODO: need to research the 64 bit variant
// expected_binary = &.{ 0x13, 0x10, 0x00, 0x00 };
// try expect_success(
// \\@bits 64
// \\@import "pseudoinstructions"
// \\slli x0, x0, 4096
// ,
// "",
// );
}
test "instruction" {
try expect_error(
\\@instruction instruction x []
\\instruction;
,
"0.asm:2:1: error: instruction definition provides no operation code",
);
}
test "label addresses" {
expected_binary = &.{ 0x00, 0x00, 0x00 };
try expect_success(
\\label:
\\@byte 0
\\@byte 0
\\@byte 0
\\@log :label
,
"0.asm:5:1: 18446744073709551613 / -3",
);
expected_binary = &.{ 0x00, 0x00, 0x00 };
try expect_success(
\\@log :label
\\@byte 0
\\@byte 0
\\@byte 0
\\label:
,
"0.asm:1:1: 3",
);
expected_binary = &.{ 0x00, 0x00, 0x00, 0x00 };
try expect_success(
\\@word 0
\\label:
\\@log ::label
,
"0.asm:3:1: 4",
);
expected_binary = &.{ 0x13, 0x00, 0x00, 0x00, 0x13, 0x40, 0xF0, 0xFF };
try expect_success(
\\@bits 32
\\@import "rv32i"
\\@import "pseudoinstructions"
\\
\\addi x0, x0, 0
\\not x0, x0
\\label:
\\@log ::label
,
"0.asm:8:1: 8",
);
expected_binary = &.{ 0x01, 0x02, 0x03 };
try expect_success(
\\@bytes [1, 2, 3]
\\label:
\\@log ::label
,
"0.asm:3:1: 3",
);
}
test "directives" {
try expect_error("@abc", "0.asm:1:1: error: unknown directive");
}
test "constant, instruction, and pseudoinstruction redefinition" {
try expect_error(
\\$constant = 123
\\$constant = 123
,
"0.asm:2:1: error: constant already exists",
);
try expect_error(
\\@instruction instruction x []
\\@instruction instruction x []
,
"0.asm:2:1: error: instruction already exists",
);
try expect_error(
\\@pseudoinstruction x {}
\\@pseudoinstruction x {}
,
"0.asm:2:1: error: pseudoinstruction already exists",
);
}
test "accessing register and block operand in @invoke after @invoke" {
try expect_success(
\\@invoke {
\\ <x1> = 123
\\ @invoke {};
\\ @log <x1>
\\};
,
"0.asm:4:5: 123",
);
try expect_success(
\\@invoke {
\\ @invoke {};
\\ @log $$
\\} 123
,
"0.asm:3:5: 123",
);
}
test "integers" {
try expect_success("@log 123", "0.asm:1:1: 123");
try expect_success("@log 0xA", "0.asm:1:1: 10");
try expect_success("@log 0xa", "0.asm:1:1: 10");
try expect_success("@log 0b1010", "0.asm:1:1: 10");
try expect_success("@log 'A'", "0.asm:1:1: 65");
try expect_error("@log 0b_1010", "0.asm:1:6: error: leading digit separator");
try expect_error("@log 0b1010_", "0.asm:1:6: error: trailing digit separator");
try expect_error("@log 0b_", "0.asm:1:6: error: leading digit separator");
try expect_success("@log 0b10_10", "0.asm:1:1: 10");
try expect_error("@log 99999999999999999999", "0.asm:1:6: error: expected integer literal not bigger than 64 bits");
try expect_success("@log - 123", "0.asm:1:1: 18446744073709551493 / -123");
try expect_success("@log - 123456789", "0.asm:1:1: 18446744073586094827 / -123456789");
}
test "registers" {
try expect_success("@log x0", "0.asm:1:1: x0");
}
test "blocks" {
try expect_success("@log {}", "0.asm:1:1: {}");
try expect_success(
\\@log {
\\
\\}
,
"0.asm:1:1: {}",
);
try expect_success("@log { @byte 123 }", "0.asm:1:1: {...}");
}
test "lists" {
try expect_success("@log [1, 2, 3]", "0.asm:1:1: [1, 2, 3]");
try expect_success("@log \"hello\"", "0.asm:1:1: [104, 101, 108, 108, 111 / hello]");
try expect_error("@log \"hello\n", "0.asm:1:12: error: newline");
try expect_error("@log \"hello", "0.asm:1:12: error: meaningless");
try expect_success(
\\@log
\\```
\\
\\
\\
\\```
,
"0.asm:1:1: [10, 10, 10]",
);
try expect_success(
\\@log
\\```
\\A
\\```
,
"0.asm:1:1: [65, 10]",
);
try expect_success(
\\@log ```
\\ hello
\\ world
\\ ```
,
"0.asm:1:1: [104, 101, 108, 108, 111, 10, 119, 111, 114, 108, 100, 10]",
);
try expect_success(
\\@log ```
\\ a
\\
\\ b
\\ ```
,
"0.asm:1:1: [97, 10, 10, 98, 10]",
);
try expect_success(
\\@log ```
\\
\\ a
\\
\\ b
\\
\\ ```
,
"0.asm:1:1: [10, 97, 10, 10, 98, 10, 10]",
);
try expect_success(
\\@log ```
\\ hello
\\
\\ world
\\ ```.@
,
"0.asm:1:1: 13",
);
try expect_success(
\\@log ```
\\
\\ ```
,
"0.asm:1:1: [10]",
);
try expect_success(
\\@log ```
\\ ```
,
"0.asm:1:1: []",
);
try expect_success(
\\@log
\\```
\\
\\```
,
"0.asm:1:1: [10]",
);
try expect_success(
\\@log
\\```
\\```
,
"0.asm:1:1: []",
);
try expect_error(
\\@log
\\```
\\``
,
"0.asm:3:3: error: expected grave accent",
);
try expect_error(
\\@log
\\```A
\\```
,
"0.asm:2:4: error: expected newline",
);
try expect_error(
\\@log
\\```
\\``` A
,
"0.asm:3:5: error: expected value",
);
try expect_error(
\\@log ```
\\ hello
\\ A```
,
"0.asm:3:5: error: expected matching indentation",
);
try expect_success(
\\list = [1, 2, 3]
\\@log list.0
,
"0.asm:2:1: 1",
);
try expect_success(
\\list = [1, 2, 3]
\\@invoke {
\\ <x1> = 0
\\ element = (list.<x1>) - 1
\\ @log element
\\};
,
"0.asm:5:5: 0",
);
}
test "unknown" {
try expect_success("@log ?", "0.asm:1:1: ?");
try expect_success(
\\variable = ?
\\variable = 123
\\@log variable
,
"0.asm:3:1: 123",
);
try expect_error("@log ? + 1", "0.asm:1:6: error: expected integer");
}
test "redundancy in operations" {
try expect_error("@log ((1 + 1) + (1 + 1))", "0.asm:1:6: error: redundant");
try expect_error("@log (1 + 1)", "0.asm:1:6: error: redundant");
try expect_error("@log (1)", "0.asm:1:8: error: redundant");
try expect_error("@log (((1)))", "0.asm:1:10: error: redundant");
try expect_error("@log 1 + (((1)))", "0.asm:1:14: error: redundant");
try expect_error("@log 1 + (1)", "0.asm:1:12: error: redundant");
try expect_error("@log (((1))) + 1", "0.asm:1:10: error: redundant");
try expect_error("@log (1) + 1", "0.asm:1:8: error: redundant");
}
test "integer operations" {
try expect_success("@log ((50 + 50) * 100) / 2", "0.asm:1:1: 5000");
try expect_error("@log 1 + 1 + 1", "0.asm:1:12: error: expected instruction, assignment, directive, or label");
try expect_success("@log [].@ + 1", "0.asm:1:1: 1");
try expect_success("@log - 50 - 50", "0.asm:1:1: 18446744073709551516 / -100");
try expect_success("@log 1 + [].@", "0.asm:1:1: 1");
try expect_success(
\\signed = - 32
\\@log 32 + signed
,
"0.asm:2:1: 0",
);
try expect_success(
\\@import "rv32i"
\\@invoke {
\\ <x2> = 32
\\ addi x1, x2, - 32
\\ @log <x1>
\\};
,
"0.asm:5:5: 0",
);
try expect_success(
\\@import "rv32i"
\\@invoke {
\\ <x2> = 32
\\ <x3> = - 32
\\ add x1, x2, x3
\\ @log <x1>
\\};
,
"0.asm:6:5: 0",
);
try expect_success(
\\@import "rv64i"
\\@invoke {
\\ <x2> = 32
\\ <x3> = - 32
\\ addw x1, x2, x3
\\ @log <x1>
\\};
,
"0.asm:6:5: 0",
);
try expect_success(
\\@import "rv32i"
\\@invoke {
\\ <x2> = 32
\\ <x3> = - 32
\\ sub x1, x2, x3
\\ @log <x1>
\\};
,
"0.asm:6:5: 64",
);
try expect_success(
\\@import "rv64i"
\\@invoke {
\\ <x2> = 32
\\ <x3> = - 32
\\ subw x1, x2, x3
\\ @log <x1>
\\};
,
"0.asm:6:5: 64",
);
}
test "list operations" {
try expect_success("@log [1, 2, 3] ++ [4, 5, 6]", "0.asm:1:1: [1, 2, 3, 4, 5, 6]");
try expect_success("@log [1, 2, 3] ** 2", "0.asm:1:1: [1, 2, 3, 1, 2, 3]");
try expect_success("@log [] ** 0", "0.asm:1:1: []");
try expect_success("@log [] ++ []", "0.asm:1:1: []");
try expect_success("@log [1, 2, 3].@", "0.asm:1:1: 3");
try expect_success(
\\list = [1, 2, 3]
\\list.0 = (list.0) * 10
\\list.1 = (list.1) * 10
\\list.2 = (list.2) * 10
\\@log list
,
"0.asm:5:1: [10, 20, 30]",
);
}
test "block operand" {
// TODO
//try expect_success(
// \\block = {
// \\ $$.0 = 1
// \\ @log $$
// \\}
// \\list = [0, 2, 3]
// \\@invoke block list
//,
// "0.asm:3:5: [1, 2, 3]",
//);
try expect_error(
\\@import "rv32i"
\\@pseudoinstruction pseudoinstruction {
\\ instruction = { addi $$.0, $$.1, $$.2 }
\\ @inline instruction;
\\}
\\pseudoinstruction x0, x0, 0
,
"0.asm:3:26: error: no block operand",
);
expected_binary = &.{ 0x13, 0x00, 0x00, 0x00 };
try expect_success(
\\@import "rv32i"
\\@pseudoinstruction pseudoinstruction {
\\ instruction = { addi $$.0, $$.1, $$.2 }
\\ @inline instruction $$
\\}
\\pseudoinstruction x0, x0, 0
,
"",
);
}
test "not taking an operand" {
try expect_error("@invoke {}", "0.asm:1:10: error: expected value");
try expect_success("@invoke {};", "");
try expect_error("@import \"rv32i\"\necall", "0.asm:2:5: error: expected value");
expected_binary = &.{ 0x73, 0x00, 0x00, 0x00 };
try expect_success("@import \"rv32i\"\necall;", "");
}
test "case insensitivity" {
try expect_success("VARIABLE = 123\n@log variable", "0.asm:2:1: 123");
try expect_success("variable = 123\n@log VARIABLE", "0.asm:2:1: 123");
try expect_success("$CONSTANT = 123\n@log $constant", "0.asm:2:1: 123");
try expect_success("$constant = 123\n@log $CONSTANT", "0.asm:2:1: 123");
try expect_success("LABEL:\n@log :label", "0.asm:2:1: 0");
try expect_success("label:\n@log :LABEL", "0.asm:2:1: 0");
try expect_success("@LOG 123", "0.asm:1:1: 123");
try expect_success("@log ZERO", "0.asm:1:1: x0");
expected_binary = &.{ 0x73, 0x00, 0x00, 0x00 };
try expect_success("@import \"rv32i\"\nECALL;", "");
expected_binary = &.{ 0x13, 0x40, 0xF0, 0xFF };
try expect_success("@bits 32\n@import \"rv32i\"\n@import \"pseudoinstructions\"\nNOT x0, x0", "");
expected_binary = &.{ 0x73, 0x00, 0x00, 0x00 };
try expect_success("@import \"RV32I\"\necall;", "");
}
test "invocation" {
try expect_success(
\\@import "rv32i"
\\
\\@invoke {
\\ <x1> = 100
\\ addi x1, x1, 100
\\ @log <x1>
\\};
,
"0.asm:6:5: 200",
);
try expect_success(
\\@import "rv32i"
\\
\\@invoke {
\\ times = x1
\\ <times> = 5
\\ index = x2
\\ <index> = 0
\\ loop:
\\ beq index, times, :end
\\ <index> = <index> + 1
\\ jal zero, :loop
\\ end:
\\ @log <index>
\\};
,
"0.asm:13:5: 5",
);
try expect_success(
\\@invoke {
\\ @import "rv32i"
\\ jal zero, :end
\\ end:
\\};
,
"",
);
try expect_success(
\\@invoke {
\\ @import "rv32i"
\\ count = 0
\\ loop:
\\ jal zero, :end
\\ count = count + 1
\\ end:
\\ @byte :loop
\\ @byte :end
\\};
,
"",
);
try expect_success(
\\@invoke {
\\ @import "rv32i"
\\ @word 123
\\ jal x1, :label
\\ label:
\\ @log <x1>
\\};
,
"0.asm:6:5: 8",
);
try expect_success(
\\@invoke {
\\ @import "rv32i"
\\ @word 123
\\ @origin 0
\\ jal x1, :label
\\ label:
\\ @log <x1>
\\};
,
"0.asm:7:5: 4",
);
try expect_error(
\\@import "rv32i"
\\@invoke {
\\ jal zero, 0
\\};
,
"0.asm:3:5: error: cannot jump to a relative address without relative label reference in invoke context",
);
try expect_error(
\\@import "rv32i"